{% for item in module.links %}
	{% set href = item.contact_links.url.href %}
	{% if item.contact_links.url.type is equalto "EMAIL_ADDRESS" %}
		{% set href = "mailto:" + href %}
	{% endif %}
	<a href=""
		{% if item.contact_links.open_in_new_tab %}target="_blank"{% endif %}
		{% if item.contact_links.rel %}rel=""{% endif %}
		>
		Link text
	</a>

{% endfor %}