From 2d27e13f140a092bb8f0136f85f3a7cdc63d5ffb Mon Sep 17 00:00:00 2001 From: Sodbileg Gansukh Date: Thu, 4 Mar 2021 12:20:10 +0800 Subject: [PATCH] Remove visibility parameter --- author.hbs | 2 +- index.hbs | 2 +- tag.hbs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/author.hbs b/author.hbs index 8df093e..e3df0f3 100644 --- a/author.hbs +++ b/author.hbs @@ -53,7 +53,7 @@
- {{#foreach posts visibility="all"}} + {{#foreach posts}} {{!-- The tag below includes the markup for each post - partials/post-card.hbs --}} {{> "post-card"}} diff --git a/index.hbs b/index.hbs index b9f6c60..47a68e3 100644 --- a/index.hbs +++ b/index.hbs @@ -38,7 +38,7 @@ into the {body} of the default.hbs template --}}
- {{#foreach posts visibility="all"}} + {{#foreach posts}} {{!-- The tag below includes the markup for each post - partials/post-card.hbs --}} {{> "post-card"}} diff --git a/tag.hbs b/tag.hbs index 6a10e8c..707bf34 100644 --- a/tag.hbs +++ b/tag.hbs @@ -27,7 +27,7 @@
- {{#foreach posts visibility="all"}} + {{#foreach posts}} {{!-- The tag below includes the markup for each post - partials/post-card.hbs --}} {{> "post-card"}} {{/foreach}}