templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1">
  7.     <title>{% block title %}  {{ 'checkins'|trans }}{% endblock %}</title>
  8.     <link rel="shortcut icon" href="{{ asset('favicon.ico') }}" type="image/x-icon">
  9.     <link rel="icon" href="{{ asset('favicon.ico') }}" type="image/x-icon">
  10.     {% block stylesheets %}
  11.         {{ encore_entry_link_tags('app_css') }}
  12.     {% endblock %}
  13. </head>
  14. <body class="principale container-flex h-100" style="overflow: hidden">
  15. {% if is_granted("ROLE_ADMIN") and app.request.attributes.get('_route') != 'app_login' %}
  16. {% include('sidebar.html.twig') %}
  17. {% endif %}
  18. <p></p>
  19. {% block titlePage %} {% endblock %}
  20. {% include 'flashes.html.twig' %}
  21. {% block body %}{% endblock %}
  22. {% block javascripts %}
  23.     {{ encore_entry_script_tags('app') }}
  24. {% endblock %}
  25. </body>
  26. </html>