jekyll 中的分页不起作用
pagination in jekyll not working
我正在尝试在 Jekyll based project 中添加分页。
到目前为止,我已按照以下步骤操作:
- Pagination in jekyll
- 已关注 Eric 但无济于事
我已经这样设置了 _config.yml:
#Show 5 posts each page
paginate: 5
paginate_path: "/index/page:num/"
如果您使用的是循环打印帖子:
{% for post in site.posts %}
但是,您必须使用:
{% for post in paginator.posts %}
我正在尝试在 Jekyll based project 中添加分页。
到目前为止,我已按照以下步骤操作:
- Pagination in jekyll
- 已关注 Eric 但无济于事
我已经这样设置了 _config.yml:
#Show 5 posts each page
paginate: 5
paginate_path: "/index/page:num/"
如果您使用的是循环打印帖子:
{% for post in site.posts %}
但是,您必须使用:
{% for post in paginator.posts %}