<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>{% block title %}Bienvenue{% endblock %}</title> {% block stylesheets %} {{ encore_entry_link_tags('app') }} {% endblock %} </head> <body> {% for message in app.flashes('error') %} <div class="container"> <div class="alert alert-danger fade show mt-3" role="alert"> {{ message }} </div> </div> {% endfor %} {% block body %}{% endblock %} {% block javascripts %} {{ encore_entry_script_tags('app') }} {% endblock %} </body></html>