templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.         <meta name="description" content="plateforme de mise en relation des prestataires du monde de l'évenementiel et des particuliers">
  8.         <meta name="author" content="Developpement Web Entreprise 64">
  9.         <meta name="keywords" content="DJ, évènement, soirée, mariage, prestataire">
  10.         <title>{% block title %}Bookpresta{% endblock %}</title>
  11.         <link rel='icon' href='{{ absolute_url(asset("/img/charteGraphique/logo/icon_logo_color.svg")) }}'/>
  12.         {% block stylesheets %}
  13.             {{ encore_entry_link_tags('app') }}
  14.         {% endblock %}
  15.         {% block javascripts %}
  16.             {{ encore_entry_script_tags('app') }}
  17.         {% endblock %}
  18.     </head>
  19.     <body class="bgPerso1" id="body">
  20.     
  21.      
  22.      {% block body %}
  23.          {% block header %}
  24.              {% include('header.html.twig') %}
  25.          {% endblock %}
  26.          
  27.          {% block login %}
  28.              {% block register %}
  29.                  <div class="container-fluid my-auto mx-0 px-0">
  30.                      <div class="row justify-content-center px-0 mx-0">
  31.              
  32.              
  33.                          {% block section %}
  34.                              
  35.                              
  36.                          {% endblock %}
  37.              
  38.                      </div>
  39.                  </div>
  40.              {% endblock %}
  41.          {% endblock %}
  42.          {% block footer %}
  43.              {% include('footer.html.twig') %}
  44.          {% endblock %}
  45.          
  46.      
  47.         
  48.     {% endblock %}
  49.     </body>
  50. </html>