{% extends 'base.html.twig' %} {% block title %}Liste des Articles{% endblock %} {% block body %}

Liste des Articles

Créer un nouvel article
{% for post in posts %} {% else %} {% endfor %}
Id Titre Sous-titre Contenu Date Publié Actions
{{ post.id }} {{ post.title }} {{ post.subtitle }} {{ post.content|length > 100 ? post.content|slice(0, 100) ~ '...' : post.content }} {{ post.createdAtPost ? post.createdAtPost|date('Y-m-d H:i') : '' }} {{ post.isPublished ? 'Oui' : 'Non' }} Détails Modifier
Aucun article trouvé
{% endblock %}