{% extends 'base.html.twig' %} {% block title %}Articles{% if articleCategory is defined %} : {{ articleCategory.title }}{% endif %}{% if articleTag != '' %} : {{ articleTag.name }}{% endif %} {% endblock %} {% block body %}

Les actualités{% if articleCategory is defined %} : {{ articleCategory.title }}{% endif %}{% if articleTag != '' %} : {{ articleTag.name }}{% endif %}

{% if articleCategory is defined %} {% include 'base/_partials/_breadcrumb.html.twig' with { entityUrl: "articles", entityLabel: "Articles", categoryUrl: articleCategory.slug, categoryLabel: articleCategory.title } %} {% else %} {% include 'base/_partials/_breadcrumb.html.twig' with { entityUrl: "articles", entityLabel: "Articles" } %} {% endif %} {% include 'article/components/_tags.html.twig' with { tags, articleTag} %}
{% for article in articles %} {% include 'article/components/_article.html.twig' with {article:article} %} {% endfor %}
{% endblock %}