{% set id = field('id') %}
{% set class = field('class') %}
{% set tag = field('html_tag') %}
{% set link = field('link') %}
{% set classes = classNames('qx-element qx-element-heading-v2', class) %}
{% 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 %}
{{ field('title') | wrap(tag) | link(link) }}