We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec34530 commit a54c551Copy full SHA for a54c551
assets/built/casper.js
100755
100644
partials/components/post-list.hbs
@@ -21,9 +21,15 @@
21
{{#match feed "home"}}
22
{{#match @custom.header_style "Highlight"}}
23
{{#match posts.length ">=" 10}}
24
- {{#foreach posts from="11" limit="9"}}
25
- {{> "post-card"}}
26
- {{/foreach}}
+ {{#if @custom.highlight_featured_posts}}
+ {{#foreach posts from="5" limit="9"}}
+ {{> "post-card"}}
27
+ {{/foreach}}
28
+ {{else}}
29
+ {{#foreach posts from="11" limit="9"}}
30
31
32
+ {{/if}}
33
{{else}}
34
{{#foreach posts limit="9"}}
35
{{> "post-card"}}
0 commit comments