{% inline_text field="footer_contact_group.title" value="" %}
{% for item in module.footer_contact_group.footer_contact %}
	{% inline_text field="icon" value="" %}
	{% inline_text field="text" value="" %}
	
{% endfor %}

{% set href = item.url_field.href %}
						{% if item.url.type is equalto "EMAIL_ADDRESS" %}
						{% set href = "mailto:" + href %}
						{% elif item.url.type is equalto "PHONE_NUMBER" %}
						{% set href = "tel:" + href %}
						{% endif %}
						<a 
							 {% if item.url.type is equalto "CALL_TO_ACTION"  %}
							 href="" {# The href here is not escaped as it is not editable and functions as a JavaScript call to the associated CTA #}
							 {% else %}
							 href=""
							 {% endif %}
							 {% if item2.link.open_in_new_tab %}
							 target="_blank"
							 {% endif %}
							