{% import 'app/_inc/macros.html.twig' as m %}
{% set path = app.request.attributes.get('_route') %}
<!DOCTYPE html>
<html lang="{{ app.request.locale }}">
<head>
<meta charset="UTF-8">
{% include 'app/_inc/_stats.html.twig' %}
{% block seo %}
{% set entity = product is defined ? product :
category is defined ? category :
article is defined ? article :
page is defined ? page :
realisation is defined ? realisation :
null %}
{{ seo.generate(app.request.get('_route'), app.request.locale,entity)|raw }}
{% endblock %}
{% block meta %}{% endblock %}
{% block libcss %}{% endblock %}
{% include 'app/_inc/_theme.html.twig' %}
{% block css %}{% endblock %}
</head>
<body>
<div id="app">
{% include 'app/_inc/_header.html.twig' %}
{% block content %}{% endblock %}
</div>
{# {% include 'app/_inc/_modal.html.twig' %} #}
{% include 'app/_inc/_cookies.html.twig' %}
{% include 'app/_inc/_footer.html.twig' %}
{% block libjs %}{% endblock %}
<div data-lg='{
"addWish": "{{ 'product.wish.addok'|trans }}",
"removeWish": "{{ 'product.wish.removeok'|trans }}",
"attr": "{{ 'product.errorAttr'|trans }}",
"error": "{{ 'all.error'|trans }}",
"successAdd": "{{ 'product.add.txt'|trans }}",
"close": "{{ 'all.close'|trans }}"
}'></div>
{% include 'app/_inc/_vars.html.twig' %}
{{ encore_entry_script_tags('app-gsap-js') }}
{{ encore_entry_script_tags('app-base-js') }}
{% block js %}{% endblock %}
<div data-cursor>
<div class="cursor"></div>
</div>
</body>
</html>