{# Default block settings #}
{% set class = pimcore_input('class').getData() %}
{% set marginTop = pimcore_select('margin_top').getData() %}
{% set marginBottom = pimcore_select('margin_bottom').getData() %}
{% set containerWidth = pimcore_select('container_width').getData() %}
{% set areaClass = class ~ ' ' ~ marginTop ~ ' ' ~ marginBottom ~ ' ' ~ containerWidth %}
{% set anchorId = pimcore_input('anchor').getData() %}
{# Text block settings #}
{% set isLead = '' %}
{% if pimcore_checkbox('lead').isChecked() %}
{% set isLead = 'true' %}
{% endif %}
<div class="area area--text {{ areaClass }}{% if isLead %} lead{% endif %}"{% if anchorId %} id="{{ anchorId }}"{% endif %}>
{{ pimcore_wysiwyg('text', {
}) }}
</div>