templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}Welcome!{% endblock %}</title>
  6.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  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('css/global') }}
  11.             {{ encore_entry_link_tags('app') }}
  12.         {% endblock %}
  13.     </head>
  14.     <body>
  15.         <main>
  16.             {% if app.user is not null %}
  17.                 <section id="wrap-left-menu">
  18.                     {% include "common/left_menu.html.twig" %}
  19.                 </section>
  20.             {% endif %}
  21.             <section id="main-body">
  22.                 {% block body %}{% endblock %}
  23.             </section>
  24.         </main>
  25.         {% block javascripts %}
  26.             {{ encore_entry_script_tags('app') }}
  27.         {% endblock %}
  28.     </body>
  29. </html>