templates/front/page.html.twig line 8

Open in your IDE?
  1. {% extends 'front/base.html.twig' %}
  2. {% block body %}
  3.     {% include 'front/_shared/header.html.twig' with {header_class: block('header_class'), header_content: block('header_content')} %}
  4.     <div id="swup">
  5.         {% block page_content %}{% endblock %}
  6.     </div>
  7.     {% include 'front/_shared/footer.html.twig' %}
  8.     {% if is_granted('IS_IMPERSONATOR') %}
  9.         <a href="{{ impersonation_exit_path(path('cms_exit_impersonate') ) }}" data-no-swup class="exit-impersonation">
  10.             <i class="fa fa-sign-out-alt fa-flip-horizontal"></i> &nbsp; Quitter le compte de <strong>{{ app.user }}</strong>
  11.         </a>
  12.     {% endif %}
  13. {% endblock %}