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 %}Bienvenue{% endblock %}</title>
  6.         {% block stylesheets %}
  7.             {{ encore_entry_link_tags('app') }}
  8.         {% endblock %}
  9.     </head>
  10.     <body>
  11.         {% for message in app.flashes('error') %}
  12.             <div class="container">
  13.                 <div class="alert alert-danger fade show mt-3" role="alert">
  14.                    {{ message }}
  15.                 </div>
  16.             </div>
  17.         {% endfor %}
  18.         {% block body %}{% endblock %}
  19.         {% block javascripts %}
  20.             {{ encore_entry_script_tags('app') }}
  21.         {% endblock %}
  22.     </body>
  23. </html>