{% if type is not defined %} {% set type = 'base' %} {% endif %} {# === BASE TYPE === #} {% if type == 'base' %}
{{ content|raw }} {% if button is defined %}
{% set button = button %} {% if button.variant is not defined or button.variant != 'link' %} {% set button = button|merge({'variant': 'tertiary', 'wide': true}) %} {% endif %} {% include '@MauticCore/Helper/button.html.twig' with {'buttons': [button]} %}
{% endif %}
{# === CLICKABLE TYPE === #} {% elseif type == 'clickable' %} {% if href is defined and href is not empty %} {{ content|raw }} {% if icon is defined %}
{% endif %}
{% else %} {% endif %} {# === EXPANDABLE TYPE === #} {% elseif type == 'expandable' %} {% set randomId = random() %} {# === EXPANDABLE-INTERACTIVE TYPE === #} {% elseif type == 'expandable-interactive' %} {% set randomId = random() %}
{{ aboveFoldContent|raw }}
{{ belowFoldContent|raw }}
{# === MINI TYPE === #} {% elseif type == 'mini' %}
{{ title|trans }}
{% if icon is defined %}
{% endif %}
{% endif %}