{% for item in module.icon_boxes %}
	{% inline_text field="title" value="" %}
	{% inline_text field="description" value="" %}
	
	{% icon
		name=""
		style=""
		unicode=""
		icon_set=""
	%}
	{% if item.image_field.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.image_field.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.image_field.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.image_field.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% inline_text field="lord_icon_id" value="" %}
	
	{% if item.add_link %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% set href = item.link.url.href %}
	{% if item.link.url.type is equalto "EMAIL_ADDRESS" %}
	  {% set href = "mailto:" + href %}
	{% endif %}
	<a
	  {% if item.link.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 item.link.open_in_new_tab %}
	    target="_blank"
	  {% endif %}
	  {% if item.link.rel %}
	    rel=""
	  {% endif %}
	  >
	  Link text
	</a>
	
	{% inline_text field="button_text" value="" %}
	{% if item.colors.add_bg_color %}
		<!-- HTML to show when checked -->
	{% endif %}
	
	
	
	
	
	
	
	
	
	
{% endfor %}