{% extends 'base.html.twig' %} {% block seo_title %}Articles tag {{ tag.name }} - {{ site.name|default('') }}{% endblock %} {% block body %}

Articles : {{ tag.name }}

{% if articles|length > 0 %}
{% for article in articles %} {% include 'article/item.html.twig' %} {% endfor %}
{% if totalPages > 1 %} {% endif %} {% else %}

Aucun article pour ce tag.

{% endif %}
{% endblock %}