templates/frontoffice/layout.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
    <html lang="fr">
    
    <head>
        <title>{% block page_title %}{% endblock %}</title>
    
        {% include 'frontoffice/_head.html.twig' %}
    
        {% block stylesheets %}
        {# CSS COMPLEMENTAIRES #}
        {% endblock %}
    
        {% include "frontoffice/_analytics.html.twig" %}
    </head>
    
    <body>
        <div class="container">
    
            {% include 'frontoffice/_header.html.twig' %}
    
            <main class="{% block main_class %}{% endblock %}">
    
                {% block content %}{% endblock %}
    
            </main>
    
            {% include 'frontoffice/_cookie_consent.html.twig' %}
    
            {% include 'frontoffice/_footer.html.twig' %}
    
        </div>
    
        {% include 'frontoffice/_foot.html.twig' %}
    
        {% include '_notifications.html.twig' %}
    
        {% block javascripts %}
        {# JS COMPLEMENTAIRES #}
        {% endblock %}
    </body>
    
    </html>