templates/base.html.twig line 1

  1. <!DOCTYPE html>
  2. <html lang="fr" class="h-100">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}{% endblock %}</title>
  6.         <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
  7.         {% block stylesheets %}
  8.             {{ encore_entry_link_tags('app') }}
  9.         {% endblock %}
  10.         {% block javascripts %}
  11.             {{ encore_entry_script_tags('app') }}
  12.         {% endblock %}
  13.     </head>
  14.     <body class="h-100 d-flex bg-grayish">
  15.         {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
  16.             {% include 'menu/menu.html.twig' %}
  17.         {% endif %}
  18.         <div id="app-content" class="flex-fill d-flex container-fluid">
  19.             {% block body %}{% endblock %}
  20.         </div>
  21.     </body>
  22. </html>