{% if editmode %}
{{ include('includes/editmode-settings.html.twig') }}
{% endif %}
<section class="wysiwyg-area container-narrow content-block {{ not pimcore_input('anchorTitle').isEmpty() ? 'js-anchor-nav__item' }}"
{% if not pimcore_input('anchorTitle').isEmpty() %} data-anchor-nav-title="{{ pimcore_input('anchorTitle').getData() }}" {% endif %}
>
{{ include('includes/title-blocks/title-block.html.twig', {
hideIntro: true,
}) }}
{% if editmode %}
<div class="editmode-box editmode-box--info">
<div class="editmode-box__header">
Iframe-Höhe: {{ pimcore_input('iframe-height') }}
Iframe-Url: {{ pimcore_input('iframe-url') }}
</div>
</div>
{% endif %}
<div class="container">
<div class="row justify-content-center">
<div class="col-md-12">
{% if not editmode %}
<div class="wysiwyg">
{% embed('@ElementsCmsTools/consent-overlay.html.twig') with {
'classNames': {
'overlay': 'consent__overlay ratio-item',
'template': 'ratio-item',
},
'service': 'marketing',
'buttonText': 'cookies.Marketingcookies akzeptieren'|trans,
'overlayText': 'cookies.Um das Anmeldeformular anzuzeigen, müssen Sie die Cookies akzeptieren'|trans
} %}
{% block consentIframe %}
<iframe src="{{ pimcore_input('iframe-url') }}" style="height:{{ pimcore_input('iframe-height') }}px; width:100%;"></iframe>
{% endblock %}
{% endembed %}
</div>
{% endif %}
</div>
</div>
</div>
</section>