我正在尝试使用 jinja2 模板语言来返回我的帖子列表中的最后 n(比如 5)个帖子:
{% for recent in site.posts|reverse|slice(5) %}
{% for post in recent %}
<li> <a href="/{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
{% endfor %}
不过,这将返回整个列表。你如何剥离第一个或最后 n 个元素?