{% extends 'base.html.twig' %} {% block page_title %} {{ article.title }} | BO {% endblock %} {% block name_title_page_top %} {{ article.title }} {% endblock %} {% block real_page_content %} {% block body %}
{% for message in app.flashes('success') %} {% endfor %}
{% if article.image is defined and article.image is not null %} {{ article.titre }} {% endif %}

{{ article.titre }}

Créé le {{ article.createdAt|date('d/m/Y à H:i') }} {% if article.updatedAt > article.createdAt %}
Modifié le {{ article.updatedAt|date('d/m/Y à H:i') }} {% endif %}

{% if article.published %} Publié {% else %} Brouillon {% endif %}
Slug: {{ article.slug }}

{{ article.body|raw }}
{% endblock %}