{% extends 'base.html.twig' %} {% block title %}{{ article.titre }} - Mateo{% endblock %} {% block body %}

{{ article.titre }}

{{ article.contenu }}

Publié le {{ article.createdAt|date('d/m/Y H:i') }} par {{ article.auteurId }}

Commentaires ({{ article.commentaires|length }})

{% if article.commentaires|length > 0 %} {% else %}

Aucun commentaire pour le moment.

{% endif %}
{% if app.user %}

Ajouter un commentaire

{{ form_start(form) }} {{ form_widget(form) }} {{ form_end(form) }}
{% else %}

Vous devez être connecté pour commenter.

{% endif %}
{% endblock %}