2013-07-23 73 views
0

我在jekyll bootstrap的幫助下建立我的博客,並將其部署到github。這是我的問題:
我想添加一個側欄,列出我最新的10個職位。當我使用下面的代碼,它會列出我的所有文章:如何使用液體列出最新的10個帖子?

<ul> 
    {% for post in site.posts %} 
     li><a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a></li> 
    {% endfor %} 
</ul> 

,但我只想列出最新的10個(如果低於10的所有帖子的次數,列出所有),我該怎麼辦?
謝謝你的回答!

回答

3

我沒有環境來測試它,但您可能想嘗試limit關鍵字,請參閱documentation here。如果沒有達到限制,我認爲它會顯示全部。

<ul> 
    {% for post in site.posts limit:10 %} 
     <li><a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a></li> 
    {% endfor %} 
</ul> 
+0

沒錯!非常感謝你! – hazir