{% set common_header_content %} {% if eyebrow is defined %}
{{ eyebrow|trans }}
{% endif %}
{{ heading|trans }}
{% endset %} {% set common_footer_content %}
{{ copy|trans }}
{% if cta is defined and cta %} {% set cta = cta|merge({'variant': 'link', 'icon': 'ri-arrow-right-line', 'href': cta.link}) %} {% include '@MauticCore/Helper/button.html.twig' with {buttons: [cta]} %} {% endif %} {% endset %} {% set common_image_content %} {% if image is defined %} {{ image.alt|trans }} {% endif %} {% endset %}

{# === MEDIA TYPE === #} {% if type == 'media' %}
{{ common_header_content }} {{ common_footer_content }}
{{ common_image_content }}
{# === FEATURED TYPE === #} {% elseif type == 'featured' %}
{{ common_header_content }}
{{ common_footer_content }}
{{ common_image_content }}
{# === DEFAULT TYPE === #} {% else %}
{{ common_header_content }}
{{ common_footer_content }} {{ common_image_content }}
{% endif %}