{% for item in module.buttons %}
	{% set href = item.link.url.href %}
	{% if item.link.url.type is equalto "EMAIL_ADDRESS" %}
		{% set href = "mailto:" + href %}
	{% endif %}
	<a href=""
		{% if item.link.open_in_new_tab %}target="_blank"{% endif %}
		{% if item.link.rel %}rel=""{% endif %}
		>
		Link text
	</a>
	{% inline_text field="button_text" value="" %}
	
	{% icon
		name=""
		style=""
		unicode=""
		icon_set=""
	%}
{% endfor %}