如何列出Jekyll中没有类别的所有帖子?

时间:2015-03-06 01:38:04

标签: jekyll

如何列出Jekyll博客中没有指定类别的所有帖子?

如何列出给定类别中的所有 here

1 个答案:

答案 0 :(得分:1)

{% for post in site.posts %}
  {% if post.categories contains 'postcategory' %}
    <h1>Do nothing</h1>
  {% else %}
    <h2>{{ post.title }}</h2>
  {% endif %}
{% endfor %}