templates/base.html.twig line 1

  1. {# Base des templates #}
  2. {# Contient le header et le footer du site #}
  3. <!DOCTYPE html>
  4. <html>
  5.     <head>
  6.         <meta charset="UTF-8">
  7.         <title>{% block title %}A2MI | Gestion contrats{% endblock %}</title>
  8.         <link rel="icon" type="image/x-icon" href="{{ asset('img/favicon.png') }}">
  9.         {% block stylesheets %}
  10.             <link href="{{ asset('css/reset.css') }}" rel="stylesheet"/>
  11.             <link href="{{ asset('css/mobile.css') }}" rel="stylesheet"/>
  12.             <link href="{{ asset('css/ecranlarge.css') }}" rel="stylesheet"/>
  13.         {% endblock %}
  14.     </head>
  15.     <header>
  16.         <a href="{{ path('app_login') }}"><img id="logo_a2mi_header" src="{{ asset('img/logo_header.png') }}" alt="a2mi_header" height="" width=""></a>
  17.     </header>
  18.     {# Les templates sont appelés ici #}
  19.     <body>
  20.         {% block body %}{% endblock %}
  21.     </body>
  22.     <footer>
  23.         <p>
  24.             Copyright © 2023 - <a href="https://a2mi-info.com/">A2MI Informatique</a>
  25.         </p>
  26.         <br>
  27.         <p>Tous droits réservés</p>
  28.     </footer>
  29.     {% block javascripts %}
  30.         <script src="{{ asset('js/password.js') }}"></script>
  31.     {% endblock %}
  32. </html>