{{ article.title }}
Par: {{ article.author }} | Date: {{ article.createdAt ? article.createdAt|date('d/m/Y H:i:s') : '' }}
{{ article.content }}
{% 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 %}
Par: {{ article.author }} | Date: {{ article.createdAt ? article.createdAt|date('d/m/Y H:i:s') : '' }}
{{ article.content }}
{{ comment.content }}
{{ comment.createdAt ? comment.createdAt|date('d/m/Y H:i:s') : '' }}