templates/base.html.twig line 1
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}suivie{% endblock %} - Suivie</title>
<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>">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="stylesheet" href="{{ asset('assets/css/bootstrap.min.css') }}">
{% block stylesheets %}{% endblock %}
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.3/dist/leaflet.css"
integrity="sha256-kLaT2GOSpHechhsozzB+flnD+zUyjE2LlfWPgU04xyI="
crossorigin=""/>
<link rel="stylesheet" href="https://unpkg.com/leaflet.markercluster@1.4.1/dist/MarkerCluster.css"/>
<link rel="stylesheet" href="https://unpkg.com/leaflet.markercluster@1.4.1/dist/MarkerCluster.Default.css"/>
<link rel="stylesheet" href="{{ asset('assets/css/styles.css') }}">
<script src="{{ asset('assets/js/bootstrap.bundle.min.js') }}"defer></script>
{% block javascripts %}{% endblock %}
<script src="{{ asset('assets/js/scripts.js') }}" defer></script>
</head>
<body>
{% include "partiel/nav.html.twig" %}
{% if app.user and app.user.confir == 0 %}
<div class="alert alert-warning alert-dismissible" role="alert">
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="close"></button>
<div class="alert-message" >
<strong>votre compte n'est pas autoriser</strong>
</div>
</div>
{% endif %}
{% if app.user and app.user.valid == 0 %}
<div class="alert alert-warning alert-dismissible" role="alert">
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="close"></button>
<div class="alert-message" >
<strong>Votre email n'est pas valider</strong><a href="{{ path('routeverif')}}"> renvoyer le lien d'activation</a>
</div>
</div>
{% endif %}
{% include "partiel/flash.html.twig" %}
{% block body %}{% endblock %}
{% include('partiel/footer.html.twig') %}
</body>
</html>