templates/base.html.twig line 1

  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}suivie{% endblock %} - Suivie</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.         <meta name="viewport" content="width=device-width,initial-scale=1.0">
  8.         
  9.         <link rel="stylesheet" href="{{ asset('assets/css/bootstrap.min.css') }}">
  10.         {% block stylesheets %}{% endblock %}
  11.         <link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.3/dist/leaflet.css"
  12.      integrity="sha256-kLaT2GOSpHechhsozzB+flnD+zUyjE2LlfWPgU04xyI="
  13.      crossorigin=""/>
  14.     <link rel="stylesheet" href="https://unpkg.com/leaflet.markercluster@1.4.1/dist/MarkerCluster.css"/>
  15.     <link rel="stylesheet" href="https://unpkg.com/leaflet.markercluster@1.4.1/dist/MarkerCluster.Default.css"/>
  16.         <link rel="stylesheet" href="{{ asset('assets/css/styles.css') }}">
  17.         <script src="{{ asset('assets/js/bootstrap.bundle.min.js') }}"defer></script>
  18.         {% block javascripts %}{% endblock %}
  19.         <script src="{{ asset('assets/js/scripts.js') }}" defer></script>
  20.     </head>
  21.     <body>
  22.          {% include "partiel/nav.html.twig" %}
  23.          {% if app.user and app.user.confir == 0 %}
  24.             <div class="alert alert-warning alert-dismissible" role="alert">
  25.                 <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="close"></button>
  26.             <div class="alert-message" >
  27.             <strong>votre compte n'est pas autoriser</strong>
  28.             </div>
  29.             </div>
  30.          {% endif %}
  31.          {% if app.user and app.user.valid == 0 %}
  32.             <div class="alert alert-warning alert-dismissible" role="alert">
  33.                 <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="close"></button>
  34.             <div class="alert-message" >
  35.             <strong>Votre email n'est pas valider</strong><a href="{{ path('routeverif')}}"> renvoyer le lien d'activation</a>
  36.             </div>
  37.             </div>
  38.          {% endif %}
  39.          {% include "partiel/flash.html.twig" %}
  40.         {% block body %}{% endblock %}
  41.        {% include('partiel/footer.html.twig') %}
  42.     </body>
  43. </html>