{% for item in module.cards %}
	{% if item.show_icon_image %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% if item.icon_image.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.icon_image.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.icon_image.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.icon_image.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% inline_text field="card_title" value="" %}
	{% inline_rich_text field="card_content" value="" %}
{% endfor %}