{% block content %}
{# title #}
{% set title = pimcore_textarea('title', {
'placeholder': 'Titel',
'nl2br': true
}) %}
{# random #}
{% set random = random() %}
{% if editmode %}
<div class="editmode grid-x">
<div class="cell toggler-title">
<div data-toggle="settings-{{ random }}">Headline</div>
</div>
<div class="cell toggler-content" id="settings-{{ random }}" data-toggler=".is-active">
<div class="toggler-content-panel">
<div class="grid-x grid-padding-x">
</div>
</div>
</div>
</div>
{% endif %}
{% if editmode or title.data %}
<section class="section-headline">
<div class="grid-container">
<div class="title">
<h1>
{{ title|raw }}
</h1>
</div>
</div>
</section>
{% endif %}
{% endblock %}