Remove visibility parameter
This commit is contained in:
parent
a43c6b3cbc
commit
2d27e13f14
3 changed files with 3 additions and 3 deletions
|
@ -53,7 +53,7 @@
|
|||
<div class="inner posts">
|
||||
|
||||
<div class="post-feed">
|
||||
{{#foreach posts visibility="all"}}
|
||||
{{#foreach posts}}
|
||||
|
||||
{{!-- The tag below includes the markup for each post - partials/post-card.hbs --}}
|
||||
{{> "post-card"}}
|
||||
|
|
|
@ -38,7 +38,7 @@ into the {body} of the default.hbs template --}}
|
|||
<div class="inner posts">
|
||||
|
||||
<div class="post-feed">
|
||||
{{#foreach posts visibility="all"}}
|
||||
{{#foreach posts}}
|
||||
|
||||
{{!-- The tag below includes the markup for each post - partials/post-card.hbs --}}
|
||||
{{> "post-card"}}
|
||||
|
|
2
tag.hbs
2
tag.hbs
|
@ -27,7 +27,7 @@
|
|||
<main id="site-main" class="site-main outer">
|
||||
<div class="inner posts">
|
||||
<div class="post-feed">
|
||||
{{#foreach posts visibility="all"}}
|
||||
{{#foreach posts}}
|
||||
{{!-- The tag below includes the markup for each post - partials/post-card.hbs --}}
|
||||
{{> "post-card"}}
|
||||
{{/foreach}}
|
||||
|
|
Loading…
Reference in a new issue