{% extends 'base.html.twig' %}
{% block title %}{{ page.title|replace({ '<br>':'' }) }}{% endblock %}
{% block body %}
<h1>{{ page.title|raw }}</h1>
{% if is_granted('ROLE_EDITOR') %}
{% set url = ea_url()
.setController('App\\Controller\\Admin\\PageCrudController')
.setAction('edit')
.setEntityId(page.id) %}
<p><a class="adm-link" href="{{ url }}" target="_blank">administrer la page</a></p>
{% endif %}
{# <div class="date">
{{page.createdAt|date("d/m/Y")}}
</div> #}
{% if page.medias is not empty %}
<div class="article medias">
{% include 'media/postMedias.html.twig' with {'post': article } %}
</div>
{% endif %}
<section class="contenu mgb">
{{ page.content|raw }}
</section>
<section class="formulaire">
{{form(form)}}
</section>
{% endblock %}