{% for block in content.sections %} {% if block.type == 'hero' %}

{{ block.title }}

{% if block.subtitle is defined and block.subtitle %}

{{ block.subtitle }}

{% endif %} {% if block.cta_label is defined and block.cta_label and block.cta_url is defined and block.cta_url %} {{ block.cta_label }} {% endif %}
{% elseif block.type == 'text_image' %}
{% if block.image is defined and block.image %}
{{ block.image.title ?? '' }}
{% endif %}
{{ block.text|raw }}
{% elseif block.type == 'cta' %}
{{ block.label }}
{% elseif block.type == 'text' %}
{{ block.text|raw }}
{% endif %} {% endfor %}