【发布时间】:2016-06-13 20:23:40
【问题描述】:
我只想在主页上一次显示六个帖子,我该如何分页?
我使用如下显示代码;
<div class="row">
{% for post in site.posts %}
{% include post-grid.html %}
{% endfor %}
</div>
这是帖子……
<div class="col-xs-12 col-md-4 post" itemscope itemtype="http://schema.org/Article">
<h2><a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a></h2>
</div>
我想一次显示 6 个,然后是一些基本的引导样式分页。
谁能帮忙?
【问题讨论】: