{% extends "wagtail_design_system/base.html" %} {% load static design_system_tags wagtailcore_tags wagtailimages_tags i18n %} {% if page.search_description %} {% block description %} {% endblock description %} {% endif %} {% block content %} {% include "sites_faciles/heading.html" %} {% include "sites_faciles/messages.html" %}
{% if category %} {% design_system_breadcrumb breadcrumb %}

{% blocktranslate %}Entries in category {{ category }}{% endblocktranslate %}

{% if category_description %}

{{ category_description }}

{% endif %} {% elif tag %} {% design_system_breadcrumb breadcrumb %}

{% blocktranslate %}Entries tagged with {{ tag }}{% endblocktranslate %}

{% elif author %} {% design_system_breadcrumb breadcrumb %}

{% blocktranslate %}Entries written by{% endblocktranslate %} {{ author.first_name }} {{ author.last_name }}

{% elif year %}

{% blocktranslate %}Entries published in {{ year }}{% endblocktranslate %}

{% else %} {% include "sites_faciles/breadcrumbs.html" %}

{{ page.title }}

{% if page.description %}

{{ page.description }}

{% endif %} {% endif %}
{% for post in posts %}
{% empty %}

Aucun article trouvé.

{% endfor %}
{% if posts.paginator.num_pages > 1 %}
{% design_system_pagination posts %}
{% endif %} {% endblock content %}