templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>LokoLoko - {% block title %}{% endblock %}</title>
  6.         <meta name="viewport" content="width=device-width">
  7.         <link rel="icon" href="{{ asset('assets/img/logo-wh.svg')}}">
  8.         <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" type="text/css" rel="stylesheet" />
  9.         <link href="{{ asset('assets/css/main.css')}}" type="text/css" rel="stylesheet" />
  10.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  11.         {% block stylesheets %}
  12.             {{ encore_entry_link_tags('app') }}
  13.         {% endblock %}
  14.         {% block javascripts %}
  15.             {{ encore_entry_script_tags('app') }}
  16.         {% endblock %}
  17.     </head>
  18.     <body>
  19.         <section class="flashmessages">
  20.             {# read and display all flash messages #}
  21.             {% for label, messages in app.flashes %}
  22.                 {% for message in messages %}
  23.                     <div class="{{ label }}">
  24.                         {{ message }}
  25.                     </div>
  26.                 {% endfor %}
  27.             {% endfor %}
  28.         </section>
  29.         <section class="wrapper">
  30.             {% block body %}{% endblock %}
  31.         </section>
  32.     </body>
  33. </html>