<!DOCTYPE html>
<html lang="{{ app.request.locale }}">
{{ include('Includes/headProducts.html.twig') }}
<body>
<header class="main-header">
<div class="navigation has-background bg-image page-main row">
<div class="main-content flex-col box-align-center">
{{ include('Includes/NavMain.html.twig') }}
</div>
</div>
</header>
<main>
{{ block('content') }}
</main>
{# pimcore_inc('/' ~ app.request.locale ~ '/shared/includes/footer') #}
{{ include('Includes/NavFooter.html.twig') }}
{% if enabledWebsiteFeatures is defined and enabledWebsiteFeatures['sidebarCart'] is defined and enabledWebsiteFeatures['sidebarCart'] == true %}
{{ include('Includes/SidebarCart.html.twig') }}
{% endif %}
{# output scripts added before #}
{% block scripts deferred %}
{{ pimcore_head_script() }}
{{ include('Includes/footerScripts.html.twig') }}
{% endblock %}
<script>var country = '{% if country is defined %}{{ country }}{% else %}DE{% endif %}';</script>
</body>
</html>