{% extends "base.html.twig" %} {% block body %}

{{ article.title }} {{ article.nbLikes }} ♥

PubliƩ le : {{ article.publishedAt|date("Y-m-d H:i") }}, par {{ article.author.firstname }} {{ article.author.lastname }}

{{ article.body }}

Retour Liste

Commentaires
{% if article.comments is empty %}

Pas de commentaires pour le moment.

{% else %} {% for comment in article.comments %}

{{ comment.body }}

par {{ comment.username }}, le {{ comment.publishedAt|date("Y-m-d H:i") }}


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