{% extends "base.html" %} {% load wagtailcore_tags wagtailimages_tags static %} {% block content %}
{% for numero in last_numeros reversed %} {% image numero.image fill-200x280 class="" %}
N°{{ numero.journal_numero }}
{{ numero.title }}
{% if not forloop.last %}{% endif %} {% endfor %}
{% 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 %}

{{ page.info_2_title }}

Agenda
{{ page.info_2_text|safe }}
{% endif %}

Brèves

{% for breve in breves %}

{{ breve.title }}

{{ breve.chapeau|safe|truncatechars_html:240 }}
{% endfor %}
{% endblock %}