mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2025-06-21 11:10:53 +00:00
Bypass hidden posts in home page pagination (fix #504)
This commit is contained in:
parent
2b66ad0441
commit
08a993be90
@ -6,7 +6,7 @@ layout: page
|
||||
{% include lang.html %}
|
||||
|
||||
{% assign pinned = site.posts | where: "pin", "true" %}
|
||||
{% assign default = site.posts | where_exp: "item", "item.pin != true" %}
|
||||
{% assign default = site.posts | where_exp: "item", "item.pin != true and item.hidden != true" %}
|
||||
|
||||
{% assign posts = "" | split: "" %}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user