templates/base.twig line 1

  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>EHPA API</title>
  6.         <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>">
  7.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  8.         {% block stylesheets %}
  9.             {{ encore_entry_link_tags('app') }}
  10.         {% endblock %}
  11.         {% block javascripts %}
  12.             {{ encore_entry_script_tags('app') }}
  13.         {% endblock %}
  14.     </head>
  15.     <body>
  16.         {% include 'navbar.twig' %}
  17.         <div class="container mt-5">
  18.         {% for label, messages in app.flashes %}
  19.           {% for message in messages %}
  20.             <div class="alert alert-dismissible alert-{{ label }}">
  21.               {{ message }}
  22.             </div>
  23.           {% endfor %}
  24.         {% endfor %}
  25.         </div>
  26.         <div class="container mt-5">
  27.           <h1>EHPA API</h1>
  28.             {% block body %}{% endblock %}
  29.         </div>
  30.     </body>
  31. </html>