File "atomic-button.html.twig"
Full Path: /home/ccipcixf/public_html/beta/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-button/atomic-button.html.twig
File size: 1009 B
MIME-type: text/plain
Charset: utf-8
{% if settings.text is not empty %}
{%- set allowed_tags = '<b><strong><sup><sub><s><em><i><u><del><span><br>' %}
{% set classes = settings.classes | merge( [ base_styles.base ] ) | join(' ') %}
{% set id_attribute = settings._cssid is not empty ? 'id=' ~ settings._cssid | e('html_attr') : '' %}
{% if settings.link and settings.link.attributes is not empty %}
<{{ settings.link.tag | e('html_tag') }}
{{ settings.link.attributes | raw }}
class="{{ classes }}"
data-interaction-id="{{ interaction_id }}"
{{ id_attribute }} {{ settings.attributes | raw }}
>
{{ settings.text | striptags(allowed_tags) | raw }}
</{{ settings.link.tag | e('html_tag') }}>
{% else %}
<button class="{{ classes }}" data-interaction-id="{{ interaction_id }}" {{ id_attribute }} {{ settings.attributes | raw }}>
{{ settings.text | striptags(allowed_tags) | raw }}
</button>
{% endif %}
{% endif %}