<!DOCTYPE html>
<html lang="{{ app.request.locale }}">
<head>
<title>{{ pageSubTitle is defined ? (pageSubTitle ~ openform_front_util.getMetaTitleGlue()) }}{{ openform_front_util.Config.Translation[app.request.locale].title }}</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<style>
{% if openform_front_util.Config.mainContentWidth and openform_front_util.Config.mainContentWidth|length > 0 %}
.container{
padding-left: calc((100vw - {{openform_front_util.Config.mainContentWidth}}vw) / 2) !important;
padding-right: calc((100vw - {{openform_front_util.Config.mainContentWidth}}vw) / 2) !important;
max-width: 100vw !important;
width: 100vw !important;
position: relative;
margin: 0 auto;
}
{% endif %}
.tiny-mce-button-link .wysiwyg-link{
text-transform: none;
color:inherit;
}
.tiny-mce-button-link .wysiwyg-link::after{
display:none;
}
.tiny-mce-button-link{
border:0.05em solid #888 !important;
background-color: silver;
border-radius: 0.7em;
padding:0.1em 0.2em 0.1em 0.2em;
margin-left:0.1em;
margin-right:0.1em
}
</style>
{% include "@openform_front_templates/_includes/_meta_tags.html.twig" %}
{% block fbOgTags %}
{% include "@openform_front_templates/_includes/_fb_og_tags.html.twig" %}
{% endblock %}
{{ vite_entry_link_tags('styles') }}
{% if openform_front_util.Config.additionalHeadCode %}
{{openform_front_util.Config.additionalHeadCode|raw }}
{% endif %}
<link rel="icon" href="/build/img/icons/favicon.svg" sizes="any" type="image/svg+xml">
<!--{{ app.environment }}-->
</head>
<body {% block bodyAttr %}{% endblock %} class="js-body {% block bodyClass %}{% endblock %}">
{% block header %}
{% include "@openform_front_templates/_includes/_header.html.twig" with {'langLinks' : (langLinks is defined ? langLinks)} %}
{% endblock %}
<div class="js-body-content body-content{{ openform_front_util.Config.isMourning ? ' mourning' }}">
<main class="body-wrap js-body-wrap {% block contentClass %}{% endblock %}" id="main-content" style="{% if rootParent is defined and rootParent.headerHeight is defined and rootParent.headerHeight %}padding-top: {{rootParent.headerHeight > 20 ? rootParent.headerHeight - 20 : 0}}px;{% endif %} {% if entity.background is defined or rootParent.background is defined %}background-color: {{entity.background is defined and entity.background|length > 0 and entity.background ? entity.background : rootParent.background is defined and rootParent.background|length > 0 ? rootParent.background}}{% endif %}" >
{% block content %}{% endblock %}
</main>
{% block newsletter %}
{% include "@openform_front_templates/_includes/_newsletter.html.twig" %}
{% endblock %}
{% block footer %}
{% include "@openform_front_templates/_includes/_footer.html.twig" %}
{% endblock %}
</div>
{% if app.request.cookies.get('cookie_ie') != 'set' %}
{# {% include '@openform_front_templates/_includes/_cookies.html.twig' %}#}
{% endif %}
{% block prependJS %}{% endblock %}
{{ vite_entry_script_tags('scripts') }}
{% block appendJS %}{% endblock %}
{% if openform_front_util.Config.additionalBodyCode %}
{{openform_front_util.Config.additionalBodyCode|raw}}
{% endif %}
</body>
</html>