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

前端之家收集整理的这篇文章主要介绍了使用Jekyll-Bootstrap中的类别过滤帖子前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是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>

任何的想法?

提前致谢!

解决方法

在#3行中你有一个%}太多了.

除此之外,它应该工作正常.

原文链接:https://www.f2er.com/bootstrap/233928.html

猜你在找的Bootstrap相关文章