2012-08-17 54 views
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> &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> 

任何想法?

在此先感謝!

+0

簡單地說,你可以使用2個if語句嵌套在一起。 – huon 2012-08-17 15:48:04

回答

4

你有一個%}太多在#3行。

除此之外,它應該工作正常。

相關問題