{% extends 'base.html.twig' %} {% block title %}Catégorie - Articles{% endblock %} {% block body %}

Articles de la catégorie

{% if posts is empty %}
Aucun article dans cette catégorie.
{% else %} {% for post in posts %}
{{ post.title|default('Image article') }}

{{ post.title }}

{{ post.subtitle|slice(0,80) ~ '...' }}

{% endfor %} {% endif %}
{% endblock %}