{% if module.image_field.src %}
	{% set sizeAttrs = 'width="" height=""' %}
	{% if module.image_field.size_type == 'auto' %}
		{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
	{% elif module.image_field.size_type == 'auto_custom_max' %}
		{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
	{% endif %}
	 {% set loadingAttr = module.image_field.loading != 'disabled' ? 'loading=""' : '' %}
	<img src="" alt=""  >
{% endif %}