{# ====== BLOG LISTING — Theme Default ====== #}
{# --- Header page --- #}

{{ title_page }}

{% if totalArticles is defined and totalArticles > 0 %}

{{ totalArticles }} article{{ totalArticles > 1 ? 's' : '' }}

{% endif %}
{# --- Filtre actif (archive mois/année) --- #} {% if filterMonth is defined and filterMonth %}
× Voir tous les articles
{% endif %} {# --- Pills catégories --- #} {% if blogCategories is defined and blogCategories|length > 0 %}
Tous {% for row in blogCategories %} {% set cat = row[0] is defined ? row[0] : row %} {{ cat.name }} {% endfor %}
{% endif %} {# --- Params pagination (conserve filtres actifs) --- #} {% set baseParams = {} %} {% if filterMonth is defined and filterMonth %} {% set baseParams = baseParams|merge({ month: filterMonth, year: filterYear }) %} {% endif %} {% if filterCategorie is defined and filterCategorie %} {% set baseParams = baseParams|merge({ categorie: filterCategorie }) %} {% endif %}
{# --- Article featured (page 1 seulement) --- #} {% if featuredArticle is defined and featuredArticle %}
{% include 'article/article_liste_large.html.twig' with { article: featuredArticle } %}
{% endif %} {# --- Grille articles + sidebar --- #}
{# Colonne principale #}
{% if articles|length > 0 %}
{% for article in articles %} {% include 'article/item.html.twig' %} {% endfor %}
{% else %}

Aucun article pour cette période.

{% if filterMonth is defined and filterMonth or filterCategorie is defined and filterCategorie %} Voir tous les articles {% endif %}
{% endif %} {# --- Pagination --- #} {% if totalPages > 1 %} {% endif %}
{# Sidebar #}