Skip to content

Commit aa2f2cb

Browse files
Remove visibility parameter
1 parent dc09061 commit aa2f2cb

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

author.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
{{/author}}
4747

4848
<div class="post-feed container medium">
49-
{{#foreach posts visibility="all"}}
49+
{{#foreach posts}}
5050
{{> "loop"}}
5151
{{/foreach}}
5252
</div>

index.hbs

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414

1515
<div class="post-feed expanded container medium">
1616
{{^unless @member}}
17-
{{#foreach posts visibility="all"}}
17+
{{#foreach posts}}
1818
{{> "loop"}}
1919
{{/foreach}}
2020
{{else}}
21-
{{#foreach posts visibility="all"}}
21+
{{#foreach posts}}
2222
{{> "loop"}}
2323
{{/foreach}}
2424
{{/unless}}

partials/featured.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<section class="featured-wrapper container">
44
<h2 class="featured-title">Featured articles</h2>
55
<div class="featured-feed">
6-
{{#foreach featured visibility="all"}}
6+
{{#foreach featured}}
77
<article class="{{post_class}}">
88
{{#if feature_image}}
99
<div class="u-placeholder horizontal">

partials/related.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<div class="container small">
55
<h3 class="related-title">You might also like...</h3>
66
<div class="post-feed related-feed">
7-
{{#foreach posts visibility="all"}}
7+
{{#foreach posts}}
88
{{> "loop"}}
99
{{/foreach}}
1010
</div>

tag.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
{{/tag}}
2222

2323
<div class="post-feed container medium">
24-
{{#foreach posts visibility="all"}}
24+
{{#foreach posts}}
2525
{{> "loop"}}
2626
{{/foreach}}
2727
</div>

0 commit comments

Comments
 (0)