为了仅使用以下代码段显示4个帖子:
{% for post in site.categories.mycategory limit:4 %}
{{ post.content }}
{% endfor %}
现在,在第二个容器中,我需要显示5到8的帖子,然后是9到12的帖子,依此类推。 是否有过滤范围的帖子? 感谢。
答案 0 :(得分:1)
您可以使用offset跳过第一个元素:
{% for post in site.categories.mycategory limit:4 offset:4 %}
{{ post.content }}
{% endfor %}
另请考虑pagination。