我试图创建一个"同样在博客"迭代博客文章。我很高兴能够展示最新的帖子,但无法弄清楚我是如何排除用户从此次迭代中查看的当前帖子。
这是我的代码(简化):
{% for article in blog.articles limit:3 %}
<div>
{{ article | img_url: '1024x1024' | img_tag: article.title }}
{{ article.excerpt }}
{{ article.content | strip_html | truncatewords: 20 }}
</div>
{% endfor %}
答案 0 :(得分:3)
如果您在文章页面上,则需要以下内容:
using Glib
答案 1 :(得分:1)
使用当前页面标题?并检查它是否包含当前博客文章的标题。
{% for article in blog.articles limit:3 %}
{% unless page_title contains article.title %}
<div>
...
</div>
{% endunless %}
{% endfor %}