<!doctype html>
{{ include('includes/art.html.twig') }}
<html lang="{{ app.request.locale }}">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="UTF-8">
{{ include ('includes/fonts/font-preload.html.twig') }}
{% block header deferred %}
{% if not editmode and document is instanceof('\\Pimcore\\Model\\Document\\Page') %}
{% do elements_robots().checkNoIndexParams(['q', 'search', 'page', 'liveCss']) %}
{{ elements_head_title() }}
{{ elements_head_meta() }}
{{ elements_canonical() }}
{{ elements_hreflang([], false, false, 'en', false, []) }}
{{ elements_opengraph() }}
{% endif %}
{{ include('layout/includes/head.html.twig') }}
{% endblock %}
{{ include('layout/includes/js.html.twig') }}
{{ include('layout/includes/cookie-bar.html.twig') }}
</head>
<body>
<div class="skip-links" data-nosnippet>
<button data-href="#main-content" accesskey="1" class="js-skip-links skip-links__link visually-hidden-focusable"><div class="bg-primary p-2">{{ "sr.skip-to.main-content"|trans }}</div></button>
<button data-href="#table-of-content" accesskey="2" class="js-skip-links skip-links__link visually-hidden-focusable"><div class="bg-primary p-2">{{ "sr.skip-to.table-of-contents"|trans }}</div></button>
<button data-href="#main-nav" accesskey="3" class="js-skip-links skip-links__link visually-hidden-focusable"><div class="bg-primary p-2">{{ "sr.skip-to.main-navigation"|trans }}</div></button>
</div>
{{ include('layout/includes/table-of-content.html.twig') }}
{% if not editmode %}
{{ include('navigation/navigation.html.twig') }}
{% endif %}
{{ block('content') }}
{% if not editmode and document.getProperty('infobox') %}
{{ pimcore_inc(document.getProperty('infobox')) }}
{% endif %}
{% if document.property('footer') %}
{{ pimcore_inc(document.property('footer')) }}
{% endif %}
{% block layout_head_meta deferred %}
{{ jsConfig() }}
{% endblock %}
{% if app.request.get('onlyInlineCss') is empty %}
{% set file = pimcore_placeholder('jsFile').value|default('js/content') %}
{% apply spaceless %}
{% for file in encore_entry_js_files(file, elements_debug_mode() and app.request.get('liveCss') is empty ? 'debug' : 'build') %}
<script data-cookieconsent="ignore" src="{{ asset(file) }}" async></script>
{% endfor %}
{% endapply %}
{% endif %}
{% if elements_debug_mode() and app.request.get('liveCss') is empty %}
{% set message = elements_debug_message('/entrypoints.json') %}
{% if message is not empty %}
<script type="text/javascript">
(function () {
var debugError = window.setInterval(function () {
if (document.body) {
clearInterval(debugError);
var div = '<div id="warning-static-release">{{ message|raw }}</div>';
document.body.insertAdjacentHTML('beforeend', div);
}
}, 100);
})();
</script>
<style type="text/css">
#warning-static-release{
position: fixed;
bottom: calc(10rem/16);
right: calc(10rem/16);
padding: calc(5rem/16) calc(20rem/16);
background: #cd231c;
color: #ffffff;
z-index: 1000;
border-radius: calc(4rem/16);
opacity: .5;
pointer-events: none;
}
#warning-static-release:hover{
opacity: .1;
}
#warning-static-release div{
text-align: right;
font-size: calc(12rem/16);
}
</style>
{% endif %}
{% endif %}
{{ jsonLd()|raw }}
{{ jld_document(document) }}
</body>
</html>