{% for article in articles %}
{% cycle '' 'lg:order-1' as order silent %}
{% include "inc/article-tile.html" with order=order first=forloop.first %}
{% endfor %}
{% if articles.paginator.num_pages > 1 %}
{% if articles.has_previous %}Précédent{% endif %}
{% for page_num in articles.paginator.page_range %}
{{ page_num }}
{% endfor %}
{% if articles.has_next %}
Suivant
{% endif %}
{% endif %}
{% for block in page.quick_access %}
{% include_block block %}
{% endfor %}
{% if page.info_1_title or page.info_1_text %}
{{ page.info_1_title }}
{{ page.info_1_text|safe }}
{% endif %}
{% if page.info_2_title or page.info_2_text %}