与Jekyll/Liquid有困难

Col*_*son 11 liquid jekyll

我想在我的帖子下面为Nav链接做一个循环.这是进入posts.html的_layout

如果帖子是最后一个或第一个,我无法获得不显示的链接.任何帮助都是极好的.

{% for post in site.posts %}

    {% if post.previous != forloop.last %} 
        ← Last
    {% elsif post.next != forloop.first %} 
        Next →
    {% endif %}

{% endfor %}

Col*_*son 22

我有更好的运气使用page.next/previous

    {% if page.previous %} 
        <a rel="prev" href="{{ page.previous.url }}">&larr; Older</a>
    {% endif %}
    {% if page.next %} 
        <a rel="next" href="{{ page.next.url }}">Newer &rarr;</a>
    {% endif %}
Run Code Online (Sandbox Code Playgroud)