我正在尝试列出所有没有标签“ app”的页面
这适用于带有标签应用程序的商品:
{% assign pages = site.pages | where:"tags",page.list_tag | where_exp:"page", "page.tags contains 'app'" | sort:"order_number" %}
但是我不能使用“除非”:
{% 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
答案 0 :(得分:0)
我不认为这是可能的。在这种情况下,我认为您必须循环浏览页面,并在循环中包含一个unless
条件。像这样:
{% for page in site.pages %}
{% unless page.tags contains 'app' %}
{{ page.title }}
{% endunless %}
{% endfor %}