标签: jekyll
如何列出Jekyll博客中没有指定类别的所有帖子?
如何列出给定类别中的所有 here。
答案 0 :(得分:1)
{% for post in site.posts %} {% if post.categories contains 'postcategory' %} <h1>Do nothing</h1> {% else %} <h2>{{ post.title }}</h2> {% endif %} {% endfor %}