8
我是使用Jekyll和Jekyll-Bootstrap的新人。使用Jekyll-Bootstrap中的類別過濾帖子
我發現這個過濾按類別:
<ul class="posts">
{% for post in site.posts %}
{% if post.categories contains 'demography' %}
<li><span>{{ post.date | date_to_string }}</span> » <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> » <a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
任何想法?
在此先感謝!
簡單地說,你可以使用2個if語句嵌套在一起。 – huon 2012-08-17 15:48:04