{% extends 'base.html.twig' %} {% block title %}Article{% endblock %} {% block body %}
{% if is_granted('IS_AUTHENTICATED_FULLY') %} {% if article.isPublie() == false %} {% endif %}
{% include 'news/_delete_form.html.twig' with {'article': {'id': article.id}} %}
{% endif %}

{{ article.titre }}

{{ article.getIdCategorie().getLabelCategorie() }}

Publié le {{ article.datePublication ? article.datePublication|date('d/m/Y à H:i') : '' }}

{{ article.texteArticle }}

{% endblock %}