{% extends 'front/base.html.twig' %}
{% block body %}
{% include 'front/_shared/header.html.twig' with {header_class: block('header_class'), header_content: block('header_content')} %}
<div id="swup">
{% block page_content %}{% endblock %}
</div>
{% include 'front/_shared/footer.html.twig' %}
{% if is_granted('IS_IMPERSONATOR') %}
<a href="{{ impersonation_exit_path(path('cms_exit_impersonate') ) }}" data-no-swup class="exit-impersonation">
<i class="fa fa-sign-out-alt fa-flip-horizontal"></i> Quitter le compte de <strong>{{ app.user }}</strong>
</a>
{% endif %}
{% endblock %}