templates/base.html.twig line 1

  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">
  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.         <link rel="preconnect" href="https://fonts.googleapis.com">
  9.         <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  10.         <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;900&display=swap" rel="stylesheet">
  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.         <div class="container-fluid">
  20.             {#        {% include('header/menu.html.twig') %}#}
  21.             {% for message in app.flashes('error') %}
  22.                 <div class="row pt-3">
  23.                     <div class="col alert alert-danger">
  24.                         {{ message|raw }}
  25.                     </div>
  26.                 </div>
  27.             {% endfor %}
  28.             {% for message in app.flashes('success') %}
  29.                 <div class="row pt-3">
  30.                     <div class="col alert alert-success">
  31.                         {{ message|raw }}
  32.                     </div>
  33.                 </div>
  34.             {% endfor %}
  35.             {% block body %}{% endblock %}
  36.         </div>
  37.     </body>
  38. </html>