所以现在我的config.yml中有以下内容:
gems: [jekyll-paginate]
paginate: 3
paginate_path: "page:num"
所以在我的index.html页面中,我有以下内容:
{% for post in paginator.posts %}
Stuff
{% endfor %}
我无法弄清楚如何制作单独的类别页面并为它们分页。
谁能帮我解释一下?我一直在谷歌搜索,但我一直找不到任何东西。
所以现在我的config.yml中有以下内容:
gems: [jekyll-paginate]
paginate: 3
paginate_path: "page:num"
所以在我的index.html页面中,我有以下内容:
{% for post in paginator.posts %}
Stuff
{% endfor %}
我无法弄清楚如何制作单独的类别页面并为它们分页。
谁能帮我解释一下?我一直在谷歌搜索,但我一直找不到任何东西。
Jekyll 只管理帖子的分页。
如果要对类别进行分页,则需要像https://github.com/midnightSuyama/jekyll-paginate-category这样的插件。