<!doctype html>
<html lang="{{ app.request.locale }}">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="UTF-8">
{{ include('layout/partials/font-preload.html.twig') }}
{% block head deferred %}
{% if not editmode and document is instanceof('\\Pimcore\\Model\\Document\\Page') %}
{{ elements_robots().checkNoIndexParams(document.getProperty('noindex_params')|split(',')|merge(['page', 'ajax']))|raw }} {{ elements_head_title() }}
{{ elements_head_meta() }}
{{ elements_canonical() }}
{{ elements_hreflang() }}
{{ elements_opengraph() }}
{% endif %}
{{ include('layout/partials/head.html.twig') }}
{% endblock %}
{{ include('layout/partials/js-config.html.twig') }}
{{ include('layout/partials/cookie-bar.html.twig') }}
</head>
<body>
{{ include('layout/partials/skip-links.html.twig') }}
{{ include('layout/partials/table-of-content.html.twig') }}
{% if not editmode %}
{% block header %}
{{ include('includes/header.html.twig') }}
{% endblock %}
{% endif %}
<main id="main-content" role="main" class="content-block js-content-visibility content-visibility--auto {{ pimcore_placeholder('main-tag-class') }}"
{% block main_data_attributes %}{% endblock %}
>
{{ include('includes/darkpage.html.twig', with_context = false) }}
{{ block('content') }}
{% block newsletter %}
{% if document.getProperty('newsletterInfo') is pimcore_document_page_snippet %}
{{ pimcore_inc(document.getProperty('newsletterInfo'), {
'isPortal': document.getProperty('isPortal'),
'classNames': document.getProperty('isPortal') ? '' : pimcore_placeholder('isShop') == 'true' ? 'container content-block--large' : pimcore_placeholder('newsletter-info-class').value|default('content-block--large' )
}) }}
{% endif %}
{% endblock %}
</main>
{% if document.property('brick_notification') %}
{{ include('content/partials/info-bricks.html.twig', with_context = false) }}
{{ include('includes/overlays/dynamic-modal.html.twig', { 'size': 'lg', 'id': 'infoModal' }) }}
{% endif %}
{% block faq %}{% endblock %}
{% block overlay %}{% endblock %}
{% block jld_root %}{% endblock %}
{% block footer %}
{% if document.getProperty('footer') is pimcore_document_page_snippet %}
{{ pimcore_inc(document.getProperty('footer'), {
'hideAdditionalBar': hideAdditionalBar|default
}) }}
{% endif %}
{% endblock %}
<div class="js-cursor cursor"></div>
{{ include('layout/partials/js.html.twig') }}
{{ include('layout/partials/debug-mode.html.twig') }}
{{ include('includes/overlays/dynamic-modal.html.twig', { 'size': 'lg', 'id': 'deletePersonModal' }) }}
{% if not editmode and document is instanceof('\\Pimcore\\Model\\Document\\Page') %}
{{ jld_document(document) }}
{% endif %}
{{ jsonLd()|raw }}
</body>
</html>