I'm trying to create an "Also in the blog" iteration of blog posts. I'm happy to just show the latest posts, but can't figure out how I'd go about excluding the current post the user is viewing from this iteration.
Here is my code (simplified):
{% 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 %}