Jekyll Pagination多页

bry*_*yan 8 pagination jekyll jekyll-paginator

所以现在我在config.yml中有以下内容:

gems: [jekyll-paginate]
paginate: 3
paginate_path: "page:num"
Run Code Online (Sandbox Code Playgroud)

所以在我的index.html页面中,我有以下内容:

{% for post in paginator.posts %}
Stuff
{% endfor %}
Run Code Online (Sandbox Code Playgroud)

我无法弄清楚如何制作单独的类别页面并对它们进行分页.

谁能帮我摆脱光明?我一直在谷歌搜索,我一直无法找到任何东西.

Dav*_*uel 1

Jekyll 只管理帖子分页。

如果你想对类别进行分页,你将需要一个类似https://github.com/midnightSuyama/jekyll-paginate-category的插件。