使用Jekyll-Bootstrap中的类别过滤帖子

时间:2012-08-17 14:52:47

标签: jekyll liquid

我是Jekyll和Jekyll-Bootstrap的新人。

我发现这是按类别过滤的:

<ul class="posts">
{% for post in site.posts %}
    {% if post.categories contains 'demography' %}
        <li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a></li>
    {% endif %}
{% endfor %}
</ul>

当我尝试组合标签和类别时,它不起作用:

<ul class="posts">
{% for post in site.posts %}
    {% if post.categories contains 'demography' and post.tags contains 'R' %} %}
        <li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a></li>
    {% endif %}
{% endfor %}
</ul>

有什么想法吗?

提前致谢!

1 个答案:

答案 0 :(得分:4)

第3行中有%}太多。

除此之外,它应该可以正常工作。