{% extends 'base.html.twig' %} {% block title %}Détail de l'article : {{ article.title }}{% endblock %} {% block body %}

{{ article.title }}

retour a la liste des articles {% if app.user %}
You are logged in as {{ app.user.userIdentifier }}, Logout
{% endif %}

{{ article.title }}

Par: {{ article.author ?? 'Anonyme' }} | Date: {{ article.createdAt ? article.createdAt|date('d/m/Y H:i:s') : '' }}
{{ article.content|raw }}

Commentaires

{% if comments %}
{% for comment in comments %}

{{ comment.author }}

{{ comment.createdAt ? comment.createdAt|date('d/m/Y H:i:s') : '' }}

{{ comment.content }}

{% endfor %}
{% else %}

Aucun commentaire pour le moment.

{% endif %}

Ajouter un commentaire

{{ form_start(form) }} {{ form_row(form.author) }} {{ form_row(form.content) }} {{ form_row(form.save) }} {{ form_end(form) }}
{% endblock %}