{% set id = field("id") %}
{% set class = field('class') %}
{% set src = field('image') %}
{% set alt_text = field('alt_text') %}
{% set link = field('link') %}
{% set customClass = field('class') %}
{% set classes = classNames('qx-element qx-element-image-v2', customClass) %}
{% set animation = "" %}
{% if field('animation') != 'none' %}
{% if field('animation')is not empty %}
{% set animation = "cls:" ~ field('animation') ~ ";" %}
{% endif %}
{# repeat #}
{% if field('animation_repeat') %}
{% set animation = animation ~ "repeat:ture;" %}
{% endif %}
{# delay #}
{% if field('animation_delay').value %}
{% set animation = animation ~ "delay:" ~ field('animation_delay').value %}
{% endif %}
{% endif %}
{% if src.media %}
{% if src.media.type == "svg" %}
{{ src.media.svg }}
{% else %}
{{ image( startsWith(src.media.image, "data:image") ? src.media.image : FILE_MANAGER_ROOT_URL ~ src.media.image, alt_text) | link(link) }}
{% endif %}
{% elseif src.url %}
{{ image(src.url, alt_text) | link(link) }}
{% endif %}