{% with topic="" %}{% include "blog/filters.html" %}{% endwith %}
{% for article in articles %}
{% if loop.index in [1,2] %}
{% with summary_visible=True %}{% include "blog/blog-card.html" %}{% endwith %}
{% elif loop.index == 3 %}
{% include 'blog/newsletter-form.html' %}
{% include 'blog/blog-card.html' %}
{% elif (loop.index +1) % 3 == 0 and loop.index > 3 %}
{% include 'blog/blog-card.html' %}
{% else %}
{% include 'blog/blog-card.html' %}
{% endif %}
{% endfor %}
{% if current_page and current_page == 1 and upcoming %}