使用 jekyll 分页显示自定义类别
using jekyll pagination to display a custom categories
至于 jekyll 分页不适用于永久链接,我让我的根索引页面显示 blog posts
之类的博客页面,
我的网站有博客/问题/新闻/媒体 - 帖子类别
所以在我使用分页之前我能够在指定的位置显示指定的帖子非常好
{% for posts in site.categories['blog'] %}
in /blog.html 仅在 /blog/ 中显示 blog posts
当然带有固定链接
现在我把blog.html的代码移到index.html页面,
分页工作正常但显示所有帖子 blog
media
news
所以有什么帮助吗?或者我可以使用一些技巧来制作多页博客文章 with/without 分页?
提前致谢。
我也尝试使用 jekyll-paginate
构建我的页面,但由于插件不再处于积极开发状态,我切换到 octopress-paginate。
这允许我们使用像这样的简单语法:
{% for post in paginator.posts %}
或您拥有的任何其他集合/页面类型。
至于 jekyll 分页不适用于永久链接,我让我的根索引页面显示 blog posts
之类的博客页面,
我的网站有博客/问题/新闻/媒体 - 帖子类别
所以在我使用分页之前我能够在指定的位置显示指定的帖子非常好
{% for posts in site.categories['blog'] %}
in /blog.html 仅在 /blog/ 中显示 blog posts
当然带有固定链接
现在我把blog.html的代码移到index.html页面,
分页工作正常但显示所有帖子 blog
media
news
所以有什么帮助吗?或者我可以使用一些技巧来制作多页博客文章 with/without 分页?
提前致谢。
我也尝试使用 jekyll-paginate
构建我的页面,但由于插件不再处于积极开发状态,我切换到 octopress-paginate。
这允许我们使用像这样的简单语法:
{% for post in paginator.posts %}
或您拥有的任何其他集合/页面类型。