{% set suffix = suffix|default('') %}
<div class="title-block title-block--main {{ hasSmallSpacing | default(false) ? 'title-block--small-spacing' : '' }} {{ isCentered | default(false) ? 'title-block--centered' : '' }} {{ isWhite | default(false) ? 'title-block--white' : '' }} content-block container {{ styleModifier|default('') }}">
{% if (editmode or not pimcore_input('subtitle' ~ suffix).empty) and subtitleIsAbove | default(false) %}
<h2 class="title-block__sub-title">{{ pimcore_input('subtitle' ~ suffix) }}</h2>
{% endif %}
<h1 class="title-block__title">{{ pimcore_input('headline' ~ suffix) }}</h1>{# pimcore_input('headline' ~ suffix, {'required': true}) #}
{% if (editmode or not pimcore_input('subtitle' ~ suffix).empty) and not subtitleIsAbove | default(false) %}
<h2 class="title-block__sub-title">{{ pimcore_input('subtitle' ~ suffix) }}</h2>
{% endif %}
{% if editmode or not pimcore_wysiwyg('wysiwyg-main-title' ~ suffix).empty %}
<div class="wysiwyg title-block__wysiwyg">{{ pimcore_wysiwyg('wysiwyg-main-title' ~ suffix) }}</div>
{% endif %}
</div>