{% if settings.title is not empty %} {% set id_attribute = settings._cssid is not empty ? 'id=' ~ settings._cssid | e('html_attr') : '' %} <{{ settings.tag | e('html_tag') }} data-interaction-id="{{ interaction_id }}" class="{{ settings.classes | merge( [ base_styles.base ] ) | join(' ') }}" {{ id_attribute }} {{ settings.attributes | raw }} > {% set allowed_tags = '
' %} {% if settings.link and settings.link.attributes is not empty %} <{{ settings.link.tag | e('html_tag') }} {{ settings.link.attributes | raw }} class="{{ base_styles['link-base'] }}"> {{ settings.title | striptags(allowed_tags) | raw }} {% else %} {{ settings.title | striptags(allowed_tags) | raw }} {% endif %} {% endif %}