{% extends "base.html" %} {% load wagtailcore_tags wagtailimages_tags %} {% block content %}

{% if page.rubrique %}{{ page.rubrique }} | {% endif %}{{ page.title }}

Publié dans {{ page.get_parent.title }}{% if page.auteurs.all %} | Par {{ page.auteurs.all|join:", " }}{% endif %}{% if page.illustrateurs.all %}, Illustration par {{ page.illustrateurs.all|join:", " }}{% endif %}
{% image page.image max-1000x500 class="mx-auto my-4" %}
{{ page.chapeau|richtext }}
{% for block in page.body %} {% include_block block %} {% endfor %} {% include "inc/footnotes.html" %}

Issu du numéro {{ page.numero.journal_numero }} | «{{ page.numero.title }}»

{% image page.numero.image max-280x500 class="mx-auto mb-5" %} {% include "core/sommaire.html" with numero=page.numero %}
{% if page.related_articles %}

{{ page.rubrique }} | sur la même thématique

{% for article in page.related_articles %}

{{ article.title }}

{% image article.image width-550 %}
{{ article.body|truncatechars_html:500 }}
{% endfor %}
{% endif %} {% endblock %}