← All changes
|
modules/atomic-widgets/elements/atomic-image/atomic-image.html.twig
+19
-27
4.0.8
→
4.3.1
View file →
| @@ -1,27 +1,19 @@ | ||
| 1 | -{% if settings.image.src is not empty %} | |
| 2 | - {% set id_attribute = settings._cssid is not empty ? 'id=' ~ settings._cssid | e('html_attr') : '' %} | |
| 3 | - {% set has_link = settings.link and settings.link.attributes is not empty %} | |
| 4 | - {% if has_link %} | |
| 5 | - <{{ settings.link.tag | e('html_tag') }} | |
| 6 | - {{ settings.link.attributes | raw }} | |
| 7 | - class="{{ base_styles['link-base'] }}" | |
| 8 | - data-interaction-id="{{ interaction_id }}" | |
| 9 | - > | |
| 10 | - {% endif %} | |
| 11 | - <img class="{{ base_styles['base'] }} {{ settings.classes | join(' ') }}" | |
| 12 | - {% if not settings.link.href %} | |
| 13 | - data-interaction-id="{{ interaction_id }}" | |
| 14 | - {% endif %} | |
| 15 | - {{ id_attribute }} {{ settings.attributes | raw }} | |
| 16 | - {% for attr, value in settings.image %} | |
| 17 | - {% if attr == 'src' %} | |
| 18 | - src="{{ value | e('full_url') }}" | |
| 19 | - {% else %} | |
| 20 | - {{ attr | e('html_attr') }}="{{ value }}" | |
| 21 | - {% endif %} | |
| 22 | - {% endfor %} | |
| 23 | - /> | |
| 24 | - {% if has_link %} | |
| 25 | - </{{ settings.link.tag | e('html_tag') }}> | |
| 26 | - {% endif %} | |
| 27 | -{% endif %} | |
| 1 | +{% import 'elementor/macros' as m %} | |
| 2 | +{%- set has_link = settings.link is defined and settings.link.href is defined and settings.link.href is not empty -%} | |
| 3 | +{%- set link_tag = settings.link.tag | default('a') -%} | |
| 4 | +{%- if has_link -%} | |
| 5 | + <{{ link_tag | e('html_tag') }} | |
| 6 | + {{- m.render_link_attributes(settings.link) }} class="{{ base_styles['link-base'] }} {{ m.default_tag_class(link_tag) }}" data-interaction-id="{{ interaction_id }}" | |
| 7 | + > | |
| 8 | +{%- endif %} | |
| 9 | +<img class="{{ base_styles['base'] }} {{ m.default_tag_class('img') }} {{ settings.classes | join(' ') }}" | |
| 10 | + {%- if not has_link %} data-interaction-id="{{ interaction_id }}"{% endif -%} | |
| 11 | + {{- m.render_custom_attributes(settings) }} | |
| 12 | + {%- for attr, value in settings.image -%} | |
| 13 | + {%- if attr == 'src' %} src="{{ value | e('full_url') }}" | |
| 14 | + {%- else %} {{ attr | e('html_attr') }}="{{ value }}"{% endif -%} | |
| 15 | + {%- endfor %} | |
| 16 | +/> | |
| 17 | +{%- if has_link %} | |
| 18 | + </{{ settings.link.tag | default('a') | e('html_tag') }}> | |
| 19 | +{%- endif %} | |