{% set currentPath = app.request.attributes.get('_route') %}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Espace Client | {% block title %}SPA.BIZ{% endblock %}</title>
<link rel="icon" href="{{ asset('/images/logo/logo_definitif.ico') }}">
<link href="https://use.fontawesome.com/releases/v5.0.4/css/all.css" rel="stylesheet">
{% block stylesheets %}{% endblock %}
{% block encoreStyles %}
{{ encore_entry_link_tags('app') }}
{{ encore_entry_link_tags('app_link') }}
{{ encore_entry_link_tags('espace_client.styles') }}
{% endblock %}
</head>
<body>
{% block header %}
{% include '_partials/_header.html.twig' %}
{% endblock %}
{% block sub_header %}
<div class="container {% if comparator is defined %}mt-lg-6 mt-md-5 mt-sm-3 mt-3{% else %}mt-lg-6{% endif %}">
<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>
<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>
</div>
{% endblock %}
{% block breadcrumb %}
{% include '_partials/_breadcrumb.html.twig' with { page_parent: 'Espace client' } %}
{% endblock %}
<div class="body-content">{% block body %}{% endblock %}</div>
{% block footer %}
{% include '_partials/_footer.html.twig' %}
{% endblock %}
{% block recaptcha %}
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
{% endblock %}
{% block javascripts %}
{{ include("_partials/_script.html.twig") }}
{% endblock %}
{% block encoreScripts %}
{{ encore_entry_script_tags('app') }}
{{ encore_entry_script_tags('front.basics') }}
{% endblock %}
</body>
</html>