You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

51 lines
2.0 KiB

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{% block title %}{{ title }}{% endblock %}</title>
<link rel="icon" href="data:," />
{% block stylesheets %}
{% endblock %}
{% block javascripts %}
{% block importmap %}{{ importmap('app') }}{% endblock %}
{% endblock %}
</head>
<body>
{% block body %}
<header>{% block header %}{% include '_header.html.twig' %}{% endblock %}</header>
<main>
<div class="container my-3">
<div class="row">
<div class="col mb-3">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
{% block breadcrumb %}{% endblock %}
</ol>
</nav>
</div>
</div>
<div class="row">
<div class="col mb-3">
<h1>{% block page_title %}{% endblock %}</h1>
</div>
</div>
<div class="row">
<div class="col mb-3">
{% for label, messages in app.flashes %}
{% for message in messages %}
<div class="alert alert-{{ label }} alert-dismissible fade show" role="alert">
{{ message }}
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
{% endfor %}
{% endfor %}
</div>
</div>{% block page_content %}
{% endblock %}
</div>
</main>
<footer>{% block footer %}{% include '_footer.html.twig' %}{% endblock %}</footer>
{% endblock %}
</body>
</html>