{% extends 'articles/base_articles.html.twig' %} {% block title %}Articles{% endblock %} {% block body %}

📜 Articles

{% for article in articles %} {% embed 'components/_card.html.twig' %} {% block card_title %}

{{ article.title }}

{% endblock %} {% block card_subtitle %}

{{ article.status.value|capitalize }}

{% endblock %} {% block card_content %}
{{ article.content|raw }}
{% endblock %} {% block card_footer %} {% if is_granted('ARTICLE_EDIT', article) %}
📖 ✏️
{% endif %} {% endblock %} {% endembed %} {% else %}

Aucun article trouvé.

{% endfor %}
{% if is_granted('ROLE_USER') %} ➕ Créer un nouvel article {% endif %}
{% endblock %}