我正在尝试为我的帖子下方的导航链接做一个循环。这是进入posts.html的_layout
我无法获取不显示帖子是最后一篇还是第一篇的链接。任何帮助都是极好的。
{% for post in site.posts %}
{% if post.previous != forloop.last %}
← 最后
{% elsif post.next != forloop.first %}
下一个 →
{% 万一 %}
{% endfor %}