{% for item in module.group %}
	{% if item.icon.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.icon.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.icon.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.icon.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% inline_text field="title" value="" %}
	{% inline_rich_text field="text" value="" %}
	{% set href = item.linkurl.url.href %}
	{% if item.linkurl.url.type is equalto "EMAIL_ADDRESS" %}
		{% set href = "mailto:" + href %}
	{% endif %}
	<a href=""
		{% if item.linkurl.open_in_new_tab %}target="_blank"{% endif %}
		{% if item.linkurl.rel %}rel=""{% endif %}
		>
		Link text
	</a>
{% endfor %}