{% for item in module.column %}
	{% if item.image.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.image.size_type == 'auto' %}
			{% set sizeAttrs = 'style="max-width: 100%; height: auto;"' %}
		{% elif item.image.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="label_text" value="" %}
	{% inline_rich_text field="wysiwyg" value="" %}
	{% for item2 in item.button_group %}
		{% inline_text field="button_text" value="" %}
		{% set href = item2.button_link.url.href %}
		{% if item2.button_link.url.type is equalto "EMAIL_ADDRESS" %}
			{% set href = "mailto:" + href %}
		{% endif %}
		<a href=""
			{% if item2.button_link.open_in_new_tab %}target="_blank"{% endif %}
			{% if item2.button_link.no_follow %}rel="nofollow"{% endif %}
			>
			Link text
		</a>
		
		{% if item2.button_icon %}
			<!-- HTML to show when checked -->
		{% endif %}
	{% endfor %}
{% endfor %}