<!DOCTYPE html>
<html lang="{{ app.request.locale }}">
{{ include('Includes/headDefault.html.twig') }}
<body class="brand-{% if siteName is defined %}{{ siteName|lower }}{% endif %} {% if editmode %}editmode{% endif %}">
<header class="main-header">
<div class="navigation">
<div class="nav-bg has-background">
<div class="main-content flex-col box-align-center nav-wrapper">
{{ include('Includes/NavMain.html.twig') }}
</div>
</div>
</div>
</header>
<main>
{{ block('content') }}
</main>
{{ pimcore_inc('/' ~ siteName ~ '/' ~ app.request.locale ~ '/includes/footer') }}
{% if enabledWebsiteFeatures is defined and enabledWebsiteFeatures['sidebarCart'] is defined and enabledWebsiteFeatures['sidebarCart'] == true %}
{{ include('Includes/SidebarCart.html.twig') }}
{% endif %}
{% include 'Partials/AgeVerification.html.twig' %}
{# 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>