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

{{ article.title }}

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

{{ article.title }}

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

{{ article.content }}

Commentaires

{% if pagination %}
{% for comment in pagination %}
{{ comment.author }}

{{ comment.content }}

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

{% endfor %}
{% else %} {% endif %}
{{ knp_pagination_render(pagination) }}
{% endblock %}