不包括在阵列中的液体过滤器?
Liquid filter for not included in array?
我正在尝试列出所有没有标签 'app'
的页面
这适用于标签为 app 的项目:
{% assign pages = site.pages | where:"tags",page.list_tag | where_exp:"page", "page.tags contains 'app'" | sort:"order_number" %}
但我不能使用 "unless":
{% assign pages = site.pages | where:"tags",page.list_tag | where_exp:"page", "unless page.tags contains 'app'" | sort:"order_number" %}
我收到这个错误:
Liquid Exception: Liquid syntax error (line 2): Expected end_of_string but found id in /_layouts/list.html
我认为这还不可能。在这种情况下,我认为您必须遍历页面并在循环中包含 unless
条件。所以像:
{% for page in site.pages %}
{% unless page.tags contains 'app' %}
{{ page.title }}
{% endunless %}
{% endfor %}
我正在尝试列出所有没有标签 'app'
的页面这适用于标签为 app 的项目:
{% assign pages = site.pages | where:"tags",page.list_tag | where_exp:"page", "page.tags contains 'app'" | sort:"order_number" %}
但我不能使用 "unless":
{% assign pages = site.pages | where:"tags",page.list_tag | where_exp:"page", "unless page.tags contains 'app'" | sort:"order_number" %}
我收到这个错误:
Liquid Exception: Liquid syntax error (line 2): Expected end_of_string but found id in /_layouts/list.html
我认为这还不可能。在这种情况下,我认为您必须遍历页面并在循环中包含 unless
条件。所以像:
{% for page in site.pages %}
{% unless page.tags contains 'app' %}
{{ page.title }}
{% endunless %}
{% endfor %}