27 lines
1.1 KiB
Twig
27 lines
1.1 KiB
Twig
{% 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="{{ id }}"
|
|
class="{{ settings.classes | merge( [ base_styles.base ] ) | join(' ') }}"
|
|
{{ id_attribute }}
|
|
{{ settings.attributes | raw }}
|
|
{% if interactions and interactions is not empty %}
|
|
data-interactions="{{ interactions | json_encode | e('html_attr') }}"
|
|
{% endif %}
|
|
>
|
|
{% set allowed_tags = '<b><strong><sup><sub><s><em><i><u><a><del><span><br>' %}
|
|
|
|
{% if settings.link.href %}
|
|
<{{ settings.link.tag | e('html_tag') }}
|
|
{% set linkAttr = settings.link.tag == 'a' ? 'href' : 'data-action-link' %}
|
|
{{ linkAttr }}="{{ settings.link.href | raw }}"
|
|
target="{{ settings.link.target }}"
|
|
class="{{ base_styles['link-base'] }}">
|
|
{{ settings.title | striptags(allowed_tags) | raw }}
|
|
</{{ settings.link.tag | e('html_tag') }}>
|
|
{% else %}
|
|
{{ settings.title | striptags(allowed_tags) | raw }}
|
|
{% endif %}
|
|
</{{ settings.tag | e('html_tag') }}>
|
|
{% endif %}
|