Skip to content

Commit

Permalink
Remove experiemental HubL data
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon Van Dyck committed Feb 20, 2024
1 parent b1cb58f commit f90a30d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 44 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const mockBlogPosts = [
],
parentBlog: {},
publishDate: 1756388800000,
publishDateLocalized: { date: 'Jun 30, 2022 12:00:00 AM' },
publishDateLocalized: 'Jun 30, 2022 12:00:00 AM',
postListContent:
"<h3>Ankles may break, but spirits don't have to</h3> <p>Find out why a broken bone does not mean frowns all around.</p>",
},
Expand Down Expand Up @@ -55,7 +55,7 @@ export const mockBlogPosts = [
],
parentBlog: {},
publishDate: 1756388800000,
publishDateLocalized: { date: 'Jun 30, 2022 12:00:00 AM' },
publishDateLocalized: 'Jun 30, 2022 12:00:00 AM',
postListContent:
'<h3>Bikes were traditionally powered by calories -- no more!</h3> <p>Experience the joy of electricity powered movement.</p>',
},
Expand Down Expand Up @@ -88,7 +88,7 @@ export const mockBlogPosts = [
],
parentBlog: {},
publishDate: 1756388800000,
publishDateLocalized: { date: 'Jun 30, 2022 12:00:00 AM' },
publishDateLocalized: 'Jun 30, 2022 12:00:00 AM',
postListContent:
'<h3>【Eliminate WiFi Dead Spots】Cover more than 6000 square feet from garage to backyard, seamless single WiFi name for whole house.</h3> <p>Easy to expand the coverage by install 3 pack mesh system, simply setup mesh to eliminate WiFi dead spots. Support up to 9 dots to build WiFi system for any home size</p>',
},
Expand Down Expand Up @@ -120,7 +120,7 @@ export const mockBlogPosts = [
],
parentBlog: {},
publishDate: 1756388800000,
publishDateLocalized: { date: 'Jun 30, 2022 12:00:00 AM' },
publishDateLocalized: 'Jun 30, 2022 12:00:00 AM',
postListContent:
"<h3>Being a Chef</h3> <p>As much as restaurants are driven by chefs' desire to feed and entertain, and to express themselves, to produce the best possible food, delivered with impeccable service, they are, when it comes down to it, businesses and every chef that wants to be successful must get a handle on that side of things. It is perhaps the most important factor for longevity.</p>",
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import blogIcon from './assets/blog.svg';
import StyledJSXRegistry from './StyledJSXRegistry.jsx';
import StyledJSXRegistry from '../../StyledJSXRegistry.jsx';
import styles from './styles.module.css';

function stripTags(stringWithTags) {
Expand Down Expand Up @@ -498,9 +498,7 @@ const BlogPostPublishDate = ({ blogPost }) => {
className={styles.hsBlogPostPublishDate}
dateTime={new Date(publishDate).toLocaleDateString()}
>
{publishDateLocalized.date
? publishDateLocalized.date
: publishDateLocalized}
{publishDateLocalized}
</time>
);
};
Expand Down Expand Up @@ -770,7 +768,6 @@ export const meta = {
categories: ['blog'],
};

export { default as experimentalHublData } from './module.hubl.html?raw';
export { default as hublDataTemplate } from './hubl_data.hubl.html?raw';

export const defaultModuleConfig = {
Expand Down

This file was deleted.

0 comments on commit f90a30d

Please sign in to comment.