{% for item in module.list_group %}
	{% if item.image_field.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.image_field.size_type == 'auto' %}
			{% set sizeAttrs = 'style="max-width: 100%; height: auto;"' %}
		{% elif item.image_field.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="100%" height="auto" style="max-width: px; max-height: px"' %}
		{% endif %}
		<img src="" alt="" >
	{% endif %}
	{% inline_text field="title" value="" %}
	{% inline_rich_text field="copy_text" value="" %}
	{% inline_text field="cta_text" value="" %}

{% endfor %}