<!doctype html>
<html lang="{{ app.request.locale|replace({ '_': '-' }) }}">
<head>
{% include 'layouts/layout/html-head.html.twig' %}
</head>
<body>
{# get root node if there is no document defined (for pages which are routed directly through static route) #}
{% if not document is defined or not document %}
{% set document = pimcore_document(1) %}
{% endif %}
{% include 'layouts/navigation/navbar.html.twig' %}
{% if loadJsForAction()|first == 'content' and loadJsForAction()|last == 'homepage' %}
{% include 'layouts/layout/slideshow/home-slideshow.html.twig' %}
{% else %}
{% include 'layouts/layout/slideshow/fluid.html.twig' %}
{% endif %}
{#{% include 'layouts/layout/slideshow/fluid-video.html.twig' %}#}
<main>
{% include 'layouts/layout/flash-messages.html.twig' %}
{# {% include 'layouts/layout/breadcrumbs.html.twig' %}#}
{% block content %}
{% endblock %}
</main>
{% include 'layouts/layout/footer.html.twig' %}
{% if not editmode %}
{## Init Cookiebar #}
{{ render(controller('DataprivacyBundle\\Controller\\DefaultController::defaultAction', {} )) }}
{% endif %}
</body>
</html>