templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  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.0">
  7.         <title>
  8.             {% block title %}Base de savoirs
  9.             {% endblock %}
  10.         </title>
  11.         <link
  12.         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>">
  13.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  14.         <link rel="stylesheet" href="{{ asset('assets/css/tailwind_forms.css') }}">
  15.         <link href="http://fonts.cdnfonts.com/css/trebuchet-ms-2" rel="stylesheet">
  16.         <link rel="stylesheet" href="{{ asset('assets/css/tailwind.css') }}">
  17.         <link href="{{ asset('assets/css/style.css') }}" rel="stylesheet">
  18.         {% block stylesheets %}
  19.             {{ encore_entry_link_tags('app') }}
  20.         {% endblock %}
  21.         {% block javascripts %}
  22.             {{ encore_entry_script_tags('app') }}
  23.         {% endblock %}
  24.     </head>
  25.     <body>
  26.         {% block body %}{% endblock %}
  27.     </body>
  28. </html>