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