templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1">
  6.     <title>{% block title %}Application de la gestion des compétiteurs{% endblock %}</title>
  7.     <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>">
  8.     {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  9.     {% block stylesheets %}
  10.         {{ encore_entry_link_tags('app') }}
  11.     {% endblock %}
  12.     {% block javascripts %}
  13.         {{ encore_entry_script_tags('app') }}
  14.     {% endblock %}
  15. </head>
  16.     <body>
  17.     <div class="container-fluid">
  18.         <header style=" position: fixed; width: 100vw; z-index: 10; top: 0;">
  19.             {% block header %}
  20.                 {% include 'include/header.html.twig' %}
  21.             {% endblock %}
  22.         </header>
  23.         <content>
  24.             <div style="height: 60px;"></div>
  25.             {% block body %}{% endblock %}
  26.         </content>
  27.     </div>
  28.     </body>
  29. </html>