• File: atomic-image.html.twig
  • Full Path: /home/blwgracecity/jesusexp.org/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-image/atomic-image.html.twig
  • File size: 415 bytes
  • MIME-type: text/html
  • Charset: utf-8
{% if settings.link.href %}
	<a href="{{ settings.link.href | e('full_url') }}" target="{{ settings.link.target }}">
{% endif %}
<img class="{{ settings.classes | join(' ') }}"
	{% for attr, value in settings.image %}
		{% if attr == 'src' %}
			src="{{ value | e('full_url') }}"
		{% else %}
			{{ attr | e('html_attr') }}="{{ value }}"
		{% endif %}
	{% endfor %}
/>
{% if settings.link.href %}
	</a>
{% endif %}