html – Jekyll Paginator不工作

前端之家收集整理的这篇文章主要介绍了html – Jekyll Paginator不工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我目前正在开发一个基于jekyll的主页,我不能分页工作.
<ul class="posts">
    {% for post in paginator.posts %}
        <li>
            <span class="list_date">{{ post.date | date_to_string }}</span> &raquo; <span class="list_title"> {{ post.title }} </span><br>
            <span class="list_content">{{ post.content | strip_html | truncatewords:35}}</span> 
            <a href="{{ post.url }}">more...</a>
        </li>
    {% endfor %}
</ul>

这是我的液体代码,当使用站点而不是分页符时,它的工作效果非常好.
另外在我的_config.yml我有这部分:

paginate: 2
paginator_path: "news/page:num"

因为index.html文件位于新闻文件夹中

解决方法

Jekyll中的分页仅适用于index.html文件.
如果您的项目文件夹的根目录中有其他页面(例如about.html,poems.html),则分页不会在其中工作.

要在除了index.html之外的其他页面中进行分页,请为该页面创建一个新文件夹(例如poems /),并将“poems.html”改为“poems / index.html”.之后,_config.yml中的“paginate_path”应为“paginate_path:”poems / page:num /“’.

我还在调查这个问题.我的网站需要在多页上分页… Jekyll似乎不支持开箱即用

原文链接:https://www.f2er.com/html/230540.html

猜你在找的HTML相关文章