{% extends "_layouts/main.html" %} {% import 'macros.twig' as macros %} {% block main %} {# ---------- SECTION 1 (form) ---------- #} {% set sec1 = entry.registration_section_1.one() ?? null %} {% if sec1 %}
{% if sec1.section_title_2 %}

{{ macros.limpar_paragrafos(sec1.section_title_2) }}

{% endif %} {% if sec1.section_title %}

{{ macros.limpar_paragrafos(sec1.section_title) }}

{% endif %} {% if sec1.text %}

{{ macros.limpar_paragrafos(sec1.text) }}

{% endif %}
{% endif %} {# ---------- SECTION 2 (CTA) ---------- #} {% set sec2 = entry.registration_section_2.one() ?? null %} {% if sec2 %} {% set sec2_img = sec2.image.one() ?? null %}
{% if sec2_img %} {{ sec2_img.title }} {% endif %}
{% if sec2.section_title %}

{{ macros.limpar_paragrafos(sec2.section_title) }}

{% endif %} {% if sec2.text %}

{{ macros.limpar_paragrafos(sec2.text) }}

{% endif %} {% if sec2.btn_text %} {{ macros.limpar_paragrafos(sec2.btn_text) }} {% endif %}
{% endif %} {% endblock %}