templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
    <html lang="fr">
        <head>
            <meta charset="UTF-8">
            <meta http-equiv="X-UA-Compatible" content="IE=edge">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <meta name="description" content="plateforme de mise en relation des prestataires du monde de l'évenementiel et des particuliers">
            <meta name="author" content="Developpement Web Entreprise 64">
            <meta name="keywords" content="DJ, évènement, soirée, mariage, prestataire">
            <title>{% block title %}Bookpresta{% endblock %}</title>
            <link rel='icon' href='{{ absolute_url(asset("/img/charteGraphique/logo/icon_logo_color.svg")) }}'/>
            {% block stylesheets %}
                {{ encore_entry_link_tags('app') }}
            {% endblock %}
            {% block javascripts %}
                {{ encore_entry_script_tags('app') }}
            {% endblock %}
        </head>
        <body class="bgPerso1" id="body">
        
         
         {% block body %}
             {% block header %}
                 {% include('header.html.twig') %}
             {% endblock %}
             
             {% block login %}
                 {% block register %}
    
                     <div class="container-fluid my-auto mx-0 px-0">
                         <div class="row justify-content-center px-0 mx-0">
                 
    
                 
                             {% block section %}
                                 
                                 
                             {% endblock %}
    
                 
                         </div>
                     </div>
    
                 {% endblock %}
             {% endblock %}
             {% block footer %}
                 {% include('footer.html.twig') %}
             {% endblock %}
             
         
            
        {% endblock %}
        </body>
    </html>