杰基尔 - 分页不起作用

时间:2015-11-06 11:16:58

标签: jekyll

我正在和jekyll合作,但是分页不起作用,我觉得我在官方网页上做得很好。

_config.yml
paginate:3

的Gemfile gem'jekyll-paginate'

的index.html

{% if paginator.total_pages > 1 %} FUNCIONA!!! 
            {% else %} NOT WORKING {% else %}
            {% endif %}

    {% for post in paginator.posts  %}
            hello3
            {% endfor %}

            {% for post in site.posts  %}
            hello1
            {% endfor %}

帖子是.md,有问题吗?

1 个答案:

答案 0 :(得分:0)

试试这个:

_config.yaml中用以下三行替换现有的单行paginate声明:

gems: [jekyll-paginate]
paginate: 3
paginate_path: "page:num"