{% endif %}
{# --- Pills categories --- #}
{% 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 %}
{% 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 --- #}
{% if featuredArticle is defined and featuredArticle %}
{% include 'article/article_liste_large.html.twig' with { article: featuredArticle } %}
{% endif %}
{% if articles|length > 0 %}
{% for article in articles %}
{% include 'article/item.html.twig' %}
{% endfor %}