Updated number of posts to show on the homepage
This commit is contained in:
parent
4ca2598046
commit
912961abc5
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1644,7 +1644,7 @@ Search LOGO Login Subscribe
|
|||||||
/* 11.2. Without sidebar */
|
/* 11.2. Without sidebar */
|
||||||
|
|
||||||
.gh-container.is-list:not(.has-sidebar) :is(.gh-container-title, .gh-main, .gh-more) {
|
.gh-container.is-list:not(.has-sidebar) :is(.gh-container-title, .gh-main, .gh-more) {
|
||||||
grid-column: 4 / span 11;
|
grid-column: 3 / span 12;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gh-container.is-grid:not(.has-sidebar) .gh-main {
|
.gh-container.is-grid:not(.has-sidebar) .gh-main {
|
||||||
|
@ -150,7 +150,7 @@
|
|||||||
},
|
},
|
||||||
"highlight_featured_posts": {
|
"highlight_featured_posts": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true,
|
"default": false,
|
||||||
"group": "homepage",
|
"group": "homepage",
|
||||||
"visibility": "header_style:[Highlight, Magazine]"
|
"visibility": "header_style:[Highlight, Magazine]"
|
||||||
},
|
},
|
||||||
|
@ -22,33 +22,45 @@
|
|||||||
{{#match @custom.header_style "Highlight"}}
|
{{#match @custom.header_style "Highlight"}}
|
||||||
{{#match posts.length ">=" 10}}
|
{{#match posts.length ">=" 10}}
|
||||||
{{#if @custom.highlight_featured_posts}}
|
{{#if @custom.highlight_featured_posts}}
|
||||||
{{#foreach posts from="5" limit="12"}}
|
{{#get "posts" limit="16"}}
|
||||||
{{> "post-card"}}
|
{{#foreach posts from="5" limit="12"}}
|
||||||
{{/foreach}}
|
{{> "post-card"}}
|
||||||
|
{{/foreach}}
|
||||||
|
{{/get}}
|
||||||
{{else}}
|
{{else}}
|
||||||
{{#foreach posts from="11" limit="12"}}
|
{{#get "posts" limit="22"}}
|
||||||
{{> "post-card"}}
|
{{#foreach posts from="11" limit="12"}}
|
||||||
{{/foreach}}
|
{{> "post-card"}}
|
||||||
|
{{/foreach}}
|
||||||
|
{{/get}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{else}}
|
{{else}}
|
||||||
{{#foreach posts limit="12"}}
|
{{#get "posts" limit="12"}}
|
||||||
{{> "post-card"}}
|
{{#foreach posts}}
|
||||||
{{/foreach}}
|
{{> "post-card"}}
|
||||||
|
{{/foreach}}
|
||||||
|
{{/get}}
|
||||||
{{/match}}
|
{{/match}}
|
||||||
{{else match @custom.header_style "Magazine"}}
|
{{else match @custom.header_style "Magazine"}}
|
||||||
{{#match posts.length ">=" 7}}
|
{{#match posts.length ">=" 7}}
|
||||||
{{#foreach posts from="8" limit="12"}}
|
{{#get "posts" limit="19"}}
|
||||||
{{> "post-card"}}
|
{{#foreach posts from="8" limit="12"}}
|
||||||
{{/foreach}}
|
{{> "post-card"}}
|
||||||
|
{{/foreach}}
|
||||||
|
{{/get}}
|
||||||
{{else}}
|
{{else}}
|
||||||
{{#foreach posts limit="12"}}
|
{{#get "posts" limit="12"}}
|
||||||
{{> "post-card"}}
|
{{#foreach posts}}
|
||||||
{{/foreach}}
|
{{> "post-card"}}
|
||||||
|
{{/foreach}}
|
||||||
|
{{/get}}
|
||||||
{{/match}}
|
{{/match}}
|
||||||
{{else}}
|
{{else}}
|
||||||
{{#foreach posts limit="12"}}
|
{{#get "posts" limit="12"}}
|
||||||
{{> "post-card"}}
|
{{#foreach posts}}
|
||||||
{{/foreach}}
|
{{> "post-card"}}
|
||||||
|
{{/foreach}}
|
||||||
|
{{/get}}
|
||||||
{{/match}}
|
{{/match}}
|
||||||
{{/match}}
|
{{/match}}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user