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.0">
  6.         <title>
  7.             {% block title %}Talaria
  8.             {% endblock %}
  9.         </title>
  10.         <link
  11.         rel="icon" href="{{ asset('assets/images/Icone_Talaria.png') }}">
  12.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  13.         <link rel="stylesheet" href="{{ asset("assets/css/main.css") }}">
  14.         <link rel="preconnect" href="https://fonts.googleapis.com">
  15.         <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  16.         <link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
  17.         {% block stylesheets %}
  18.             {{ encore_entry_link_tags('app') }}
  19.         {% endblock %}
  20.         {% block javascripts %}
  21.             {{ encore_entry_script_tags('app') }}
  22.         {% endblock %}
  23.     </head>
  24.     <body id="corpsPage" class="transition-all duration-470 ease-in-out">
  25.         {% include "components/header.html.twig" %}
  26.         {% for type, messages in app.flashes %}
  27.             {% for message in messages %}
  28.                 <div class="text-white flash px-4 py-2 transition-opacity duration-500 ease-in-out opacity-100 {{ type }}">
  29.                     {{ message }}
  30.                 </div>
  31.             {% endfor %}
  32.         {% endfor %}
  33.         {% block body %}{% endblock %}
  34.     </body>
  35. </html>