<!DOCTYPE html>
<html lang="{{ app.request.locale }}">
<head>
<title>{% block title %}{{ titleSite }}{% endblock %}</title>
{# ------------------------- #}
{# -- METAS -- #}
{# ------------------------- #}
{% set mediaDefaultOg = 'siteImg.jpg' %}
{% set overridetTitleOg %}
{% block titleOg %}{{ titleSite }}{% endblock %}
{% endset %}
{% set overrideMetaDescriptionOg %}
{% block metaDescriptionOg %}{{ descriptionSite }}{% endblock %}
{% endset %}
{# open graph #}
{% embed 'layouts/layouts_front/common/meta/meta_og.html.twig' %}
{% block titleOg %}
{{ overridetTitleOg }}
{% endblock %}
{% block metaDescriptionOg %}
{{ overrideMetaDescriptionOg }}
{% endblock %}
{% endembed %}
{# twitter #}
{# {% embed 'layouts/layouts_front/common/meta/meta_twitter.html.twig' %} #}
{# {% block titleOg %} #}
{# {{ overridetTitleOg }} #}
{# {% endblock %} #}
{# {% block metaDescriptionOg %} #}
{# {{ overrideMetaDescriptionOg }} #}
{# {% endblock %} #}
{# {% endembed %} #}
{# others #}
{% set overrideDesindex %}
{% block desindex %}{% endblock %}
{% endset %}
{% set overrideMetaDesc %}
{% block metaDescription %}{{ overrideMetaDescriptionOg }}{% endblock %}
{% endset %}
{% embed 'layouts/layouts_front/common/meta/meta_other.html.twig' %}
{% block desindex %}
{{ overrideDesindex }}
{% endblock %}
{% block metaDescription %}
{{ overrideMetaDesc }}
{% endblock %}
{% endembed %}
{# {{ encore_entry_link_tags('app_front') }} #}
{# {{ encore_entry_script_tags('app_front') }} #}
{# ------------------------- #}
{# -- LINKS -- #}
{# ------------------------- #}
{# canonical #}
{% include 'layouts/layouts_front/common/link/canonical.html.twig' %}
{# fonts #}
{% include 'layouts/layouts_front/common/link/fonts.html.twig' %}
{# favicon - icons #}
{% include 'layouts/layouts_front/common/link/icons.html.twig' %}
{# imports CSS #}
{% include 'layouts/layouts_front/common/link/imports_CSS.html.twig' %}
{# custom CSS #}
{% block stylesheets %}{% endblock %}
{# ------------------------- #}
{# -- SCRIPTS JS -- #}
{# ------------------------- #}
{# Google Tag Manager HEAD #}
{% include 'layouts/layouts_front/common/script/google_tag_manager_head.html.twig' %}
{# imports SCRIPTS #}
{% include 'layouts/layouts_front/common/script/imports_scripts_top.html.twig' %}
{# custom #}
{% embed 'layouts/layouts_front/common/script/custom_scripts_top.html.twig' %}
{% block metaDescription %}
{{ overrideMetaDesc }}
{% endblock %}
{% endembed %}
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MDXSPBB"
height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
{# Google Tag Manager BODY #}
{% include 'layouts/layouts_front/common/script/google_tag_manager_body.html.twig' %}
{# ------------------------- #}
{# -- CONTENT -- #}
{# ------------------------- #}
{% include('loader/loader.html.twig') %}
<div id="flashMessageAjax">
{{ include('layouts/layouts_front/flash_message.html.twig') }}
</div>
<header>
{% if app.request.attributes.get('exception') is null %}
{% include 'layouts/layouts_front/nav_menu.html.twig' %}
{% endif %}
</header>
{% if isEcommerce == 1 %}
<div id="basketPanel" class="">
{{ include('layouts/layouts_front/tpl_basket_panel.html.twig') }}
</div>
{% endif %}
{% if popupMessage is defined and popupMessage is not null %}
<div id="popupFront" class="aff visible">
<div class="d-flex flex-column justify-content-center">
{{ include('layouts/layouts_front/tpl_popup.html.twig') }}
</div>
</div>
{% endif %}
{% block content %}{% endblock %}
{% if app.request.attributes.get('exception') is null %}
{% include 'layouts/layouts_front/nav_footer.html.twig' %}
{% endif %}
{# <div id="scrollToTop" class="scrollToTop mbr-arrow-up"> #}
{# <a style="text-align: center;"> #}
{# <i class="mbr-arrow-up-icon mbr-arrow-up-icon-cm cm-icon cm-icon-smallarrow-up"> #}
{# </i> #}
{# </a> #}
{# </div> #}
<input name="animation" type="hidden">
{# ------------------------- #}
{# -- SCRIPTS JS BOTTOM -- #}
{# ------------------------- #}
{# imports SCRIPTS #}
{% include 'layouts/layouts_front/common/script/imports_scripts_bottom.html.twig' %}
{# custom #}
{% include 'layouts/layouts_front/common/script/custom_scripts_bottom.html.twig' %}
{% block javascripts %}{% endblock %}
</body>
<script>
let api_error = false;
{% if api_error %}api_error = true;{% endif %}
</script>
</html>