我已经完成了之前有关Jekyll和分页的问题,但没有一项建议有效。我有这个:
_config.yml
gems:
- jekyll-paginate
paginate: 5 # amount of posts to show
paginate_path: archive/page:num/
archive.html
---
layout: archive
permalink: /archive/
author_profile: true
---
{% include base_path %}
<h3 class="archive__subtitle">{{ site.data.ui-text[site.locale].recent_posts }}</h3>
{% for post in paginator.posts %}
{% include archive-single.html %}
{% endfor %}
{% include paginator.html %}
最终在/ archive /中有一个格式很好的存档页面,零帖子。我的帖子确实有永久链接,我不知道这是不是问题。子目录正在正确创建,但存档页面却找不到它们。
请注意,如果我将它放在index.html中,它可以很好地运行,但我希望在前面有一个启动页面,其中包含指向帖子的存档页面的链接,这似乎是可能的但是不起作用。
请不要将此称为副本。我已经阅读了同一件事上的其他10篇帖子,由于某些原因它只是不起作用。
这是Jekyll 3.1.6
答案 0 :(得分:-1)
切换到解决问题的jeckyll档案。