templates/base.html.twig line 1

  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.         <title>
  7.             {% block title %}Welcome!
  8.             {% endblock %}
  9.         </title>
  10.         <link
  11.         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>">
  12.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  13.         {% block stylesheets %}
  14.             {{ encore_entry_link_tags('app') }}
  15.         {% endblock %}
  16.         {% block javascripts %}
  17.             {{ encore_entry_script_tags('app') }}
  18.         {% endblock %}
  19.     </head>
  20.     <body class="bg-slate-100">
  21.         {% block body %}
  22.             <div class="flex flex-col h-full justify-between">
  23.                 {% include('layout/_header.html.twig') %}
  24.                 {% block content %}{% endblock %}
  25.                 {% include('layout/_footer.html.twig') %}
  26.             </div>
  27.         {% endblock %}
  28.     </body>
  29. </html>