0

我已经完成了之前关于 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

4

1 回答 1

-2

切换到解决问题的 jeckyll-archives。

于 2016-06-16T20:14:26.550 回答