diff --git a/author.hbs b/author.hbs index 002bb5d..60166f7 100644 --- a/author.hbs +++ b/author.hbs @@ -49,7 +49,7 @@
- {{#foreach posts}} + {{#foreach posts visibility="all"}} {{!-- The tag below includes the markup for each post - partials/post-card.hbs --}} {{> "post-card"}} diff --git a/index.hbs b/index.hbs index 8b85db8..86d5773 100644 --- a/index.hbs +++ b/index.hbs @@ -25,7 +25,7 @@ into the {body} of the default.hbs template --}}
- {{#foreach posts}} + {{#foreach posts visibility="all"}} {{!-- The tag below includes the markup for each post - partials/post-card.hbs --}} {{> "post-card"}} @@ -47,7 +47,7 @@ into the {body} of the default.hbs template --}} // Dropping the scroll event and using only a raf loop results in smoother // scrolling but continuous processing even when not scrolling $(document).ready(function () { - + var nav = document.querySelector('.site-nav-main .site-nav'); var feed = document.querySelector('.post-feed'); diff --git a/tag.hbs b/tag.hbs index 86c5407..397df05 100644 --- a/tag.hbs +++ b/tag.hbs @@ -23,7 +23,7 @@
- {{#foreach posts}} + {{#foreach posts visibility="all"}} {{!-- The tag below includes the markup for each post - partials/post-card.hbs --}} {{> "post-card"}} {{/foreach}}