Replace "hidden" check in Liquid with where_exp
This commit is contained in:
parent
bde92b6d4a
commit
6165d896a0
@ -10,6 +10,7 @@
|
|||||||
|
|
||||||
- Add support for [Jekyll Paginate V2](https://github.com/sverrirs/jekyll-paginate-v2) 🎉 [#2636](https://github.com/mmistakes/minimal-mistakes/pull/2636)
|
- Add support for [Jekyll Paginate V2](https://github.com/sverrirs/jekyll-paginate-v2) 🎉 [#2636](https://github.com/mmistakes/minimal-mistakes/pull/2636)
|
||||||
- Auto scroll sticky ToC with content. [#3115](https://github.com/mmistakes/minimal-mistakes/pull/3115)
|
- Auto scroll sticky ToC with content. [#3115](https://github.com/mmistakes/minimal-mistakes/pull/3115)
|
||||||
|
- Replace "hidden" check in Liquid templates with `where_exp: "item", "item.hidden != true"`.
|
||||||
|
|
||||||
### Documentation & Maintenance
|
### Documentation & Maintenance
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{% assign entries = site[include.collection] %}
|
{% assign entries = site[include.collection] | where_exp: "post", "post.hidden != true" %}
|
||||||
|
|
||||||
{% if include.sort_by %}
|
{% if include.sort_by %}
|
||||||
{% assign entries = entries | sort: include.sort_by %}
|
{% assign entries = entries | sort: include.sort_by %}
|
||||||
@ -9,7 +9,5 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{%- for post in entries -%}
|
{%- for post in entries -%}
|
||||||
{%- unless post.hidden -%}
|
{% include archive-single.html %}
|
||||||
{% include archive-single.html %}
|
|
||||||
{%- endunless -%}
|
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
|
@ -1,14 +1,10 @@
|
|||||||
|
{% assign posts = include.posts | where_exp: "post", "post.hidden != true" %}
|
||||||
<div class="page__related">
|
<div class="page__related">
|
||||||
{% include before-related.html %}
|
{% include before-related.html %}
|
||||||
<h2 class="page__related-title">{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}</h2>
|
<h2 class="page__related-title">{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}</h2>
|
||||||
<div class="grid__wrapper">
|
<div class="grid__wrapper">
|
||||||
{% assign count = 0 %}
|
{% for post in posts limit:4 %}
|
||||||
{% assign limit = include.limit | default: 4 %}
|
|
||||||
{% for post in include.posts %}
|
|
||||||
{% if post.hidden %}{% continue %}{% endif %}
|
|
||||||
{% if post.id == page.id %}{% continue %}{% endif %}
|
{% if post.id == page.id %}{% continue %}{% endif %}
|
||||||
{% if count >= limit %}{% break %}{% endif %}
|
|
||||||
{% assign count = count | plus: 1 %}
|
|
||||||
{% include archive-single.html type="grid" %}
|
{% include archive-single.html type="grid" %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{%- for post in site.categories[include.taxonomy] -%}
|
{% assign posts = site.categories[include.taxonomy] | where_exp: "post", "post.hidden != true" %}
|
||||||
{%- unless post.hidden -%}
|
{%- for post in posts -%}
|
||||||
{% include archive-single.html %}
|
{% include archive-single.html %}
|
||||||
{%- endunless -%}
|
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{%- for post in site.tags[include.taxonomy] -%}
|
{% assign posts = site.tags[include.taxonomy] | where_exp: "post", "post.hidden != true" %}
|
||||||
{%- unless post.hidden -%}
|
{%- for post in posts -%}
|
||||||
{% include archive-single.html %}
|
{% include archive-single.html %}
|
||||||
{%- endunless -%}
|
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
|
@ -5,7 +5,7 @@ permalink: "/docs/history/"
|
|||||||
excerpt: Change log of enhancements and bug fixes made to the theme.
|
excerpt: Change log of enhancements and bug fixes made to the theme.
|
||||||
sidebar:
|
sidebar:
|
||||||
nav: docs
|
nav: docs
|
||||||
last_modified_at: '2024-05-05T02:36:12+08:00'
|
last_modified_at: '2024-05-05T03:17:32+08:00'
|
||||||
toc: false
|
toc: false
|
||||||
---
|
---
|
||||||
|
|
||||||
@ -25,6 +25,7 @@ toc: false
|
|||||||
|
|
||||||
- Add support for [Jekyll Paginate V2](https://github.com/sverrirs/jekyll-paginate-v2) 🎉 [#2636](https://github.com/mmistakes/minimal-mistakes/pull/2636)
|
- Add support for [Jekyll Paginate V2](https://github.com/sverrirs/jekyll-paginate-v2) 🎉 [#2636](https://github.com/mmistakes/minimal-mistakes/pull/2636)
|
||||||
- Auto scroll sticky ToC with content. [#3115](https://github.com/mmistakes/minimal-mistakes/pull/3115)
|
- Auto scroll sticky ToC with content. [#3115](https://github.com/mmistakes/minimal-mistakes/pull/3115)
|
||||||
|
- Replace "hidden" check in Liquid templates with `where_exp: "item", "item.hidden != true"`.
|
||||||
|
|
||||||
### Documentation & Maintenance
|
### Documentation & Maintenance
|
||||||
|
|
||||||
|
@ -5,8 +5,7 @@ permalink: /page-archive/
|
|||||||
author_profile: false
|
author_profile: false
|
||||||
---
|
---
|
||||||
|
|
||||||
{% for post in site.pages %}
|
{% assign posts = site.pages | where_exp: "post", "post.hidden != true" %}
|
||||||
{% unless post.hidden %}
|
{% for post in posts %}
|
||||||
{% include archive-single.html %}
|
{% include archive-single.html %}
|
||||||
{% endunless %}
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user