templates/base_espace_client.html.twig line 1

Open in your IDE?
  1. {% set currentPath = app.request.attributes.get('_route') %}
  2. <!DOCTYPE html>
  3. <html>
  4.     <head>
  5.         <meta charset="UTF-8">
  6.         <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  7.         <meta name="viewport" content="width=device-width, initial-scale=1">
  8.         <title>Espace Client | {% block title %}SPA.BIZ{% endblock %}</title>
  9.         <link rel="icon" href="{{ asset('/images/logo/logo_definitif.ico') }}">
  10.         <link href="https://use.fontawesome.com/releases/v5.0.4/css/all.css" rel="stylesheet">
  11.         
  12.         {% block stylesheets %}{% endblock %}
  13.         {% block encoreStyles %}
  14.             {{ encore_entry_link_tags('app') }}
  15.             {{ encore_entry_link_tags('app_link') }}
  16.             {{ encore_entry_link_tags('espace_client.styles') }}
  17.         {% endblock %}
  18.         
  19.     </head>
  20.     <body>
  21.         {% block header %}
  22.             {% include '_partials/_header.html.twig' %}
  23.         {% endblock %}
  24.         {% block sub_header %}
  25.             <div class="container {% if comparator is defined %}mt-lg-6 mt-md-5 mt-sm-3 mt-3{% else %}mt-lg-6{% endif %}">
  26.                 <p class="text-center footer-text d-lg-block d-md-block d-sm-none d-none" style="color: grey;">{% trans %}N°1 des comparateurs de spas en ligne -------- Jusqu'au 31 Aout profitez de 40% de réduction sur l'ensemble des spas référencés{% endtrans %}</p>
  27.                 <h4 class="text-center d-lg-none d-md-none d-sm-block d-block mb-4 fw-600" style="color: grey;">{% block title_page %}{% endblock %}</h4>
  28.             </div>
  29.         {% endblock %}
  30.         {% block breadcrumb %}
  31.             {% include '_partials/_breadcrumb.html.twig' with { page_parent: 'Espace client' } %}
  32.         {% endblock %}
  33.         <div class="body-content">{% block body %}{% endblock %}</div>
  34.         {% block footer %}
  35.             {% include '_partials/_footer.html.twig' %}
  36.         {% endblock %}
  37.         
  38.         {% block recaptcha %}
  39.             <script src="https://www.google.com/recaptcha/api.js" async defer></script>
  40.         {% endblock %}
  41.         
  42.         {% block javascripts %}
  43.             {{ include("_partials/_script.html.twig") }}
  44.         {% endblock %}
  45.         {% block encoreScripts %}
  46.             {{ encore_entry_script_tags('app') }}
  47.             {{ encore_entry_script_tags('front.basics') }}
  48.         {% endblock %}
  49.         
  50.     </body>
  51. </html>