Remove visibility parameter

This commit is contained in:
Sodbileg Gansukh 2021-03-04 12:20:10 +08:00
parent a43c6b3cbc
commit 2d27e13f14
3 changed files with 3 additions and 3 deletions

View File

@ -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"}}

View File

@ -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"}}

View File

@ -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}}