first commit

This commit is contained in:
2026-05-25 14:34:29 +02:00
commit 64f5e06629
4236 changed files with 1314148 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{%- if settings.svg.html is defined and settings.svg.html is not empty -%}
{%- 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 is defined and settings.link.attributes is not empty -%}
<{{ settings.link.tag | e('html_tag') }} {{ settings.link.attributes | raw }} class="{{ classes }}" data-interaction-id="{{ interaction_id }}"
{%- if id_attribute is not empty %} {{ id_attribute }}{% endif -%}
{%- if settings.attributes is defined and settings.attributes is not empty %} {{ settings.attributes | raw }}{% endif -%}
>{{ settings.svg.html | raw }}</{{ settings.link.tag | e('html_tag') }}>
{%- else -%}
<div class="{{ classes }}" data-interaction-id="{{ interaction_id }}"
{%- if id_attribute is not empty %} {{ id_attribute }}{% endif -%}
{%- if settings.attributes is defined and settings.attributes is not empty %} {{ settings.attributes | raw }}{% endif -%}
>{{ settings.svg.html | raw }}</div>
{%- endif -%}
{%- endif -%}