{% set common_header_content %}
{{ heading|trans }}
{{ 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 %} {# === IMAGE TYPE === #} {% if type == 'image' %}
{{ image.alt|trans }}
{{ common_header_content }}
{# === LOGO TYPE === #} {% elseif type == 'logo' %}
{{ logo.alt|trans }} {{ common_header_content }}
{# === PICTOGRAM TYPE === #} {% elseif type == 'pictogram' %}
{% include '@MauticCore/Components/pictogram.html.twig' with {'pictogram': pictogram, 'size': 48} %}
{{ common_header_content }}
{# === STATISTIC TYPE === #} {% elseif type == 'statistic' %}
{{ statistic }}
{{ common_header_content }}
{# === TEXT TYPE === #} {% elseif type == 'text' %}
{{ common_header_content }}
{% endif %}