{% for item in module.content %}
	{% inline_text field="title" value="" %}
	{% inline_rich_text field="text" value="" %}
	
	
	{% for item2 in item.list_box %}
		
		{% if item2.icon.src %}
			{% set sizeAttrs = 'width="" height=""' %}
			{% if item2.icon.size_type == 'auto' %}
				{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
			{% elif item2.icon.size_type == 'auto_custom_max' %}
				{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
			{% endif %}
			 {% set loadingAttr = item2.icon.loading != 'disabled' ? 'loading=""' : '' %}
			<img src="" alt=""  >
		{% endif %}
		{% inline_text field="list_letter" value="" %}
		{% inline_text field="title" value="" %}
		{% inline_rich_text field="text" value="" %}
		
		
	{% endfor %}
	{% if item.icon_left %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% if item.image_content.image.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.image_content.image.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.image_content.image.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.image_content.image.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% inline_rich_text field="image_content.text" value="" %}
	{% inline_text field="testimonial.position_name" value="" %}
	{% inline_text field="testimonial.text" value="" %}
	{% if item.image.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.image.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.image.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.image.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% for item2 in item.sub_content %}
		{% inline_text field="title" value="" %}
		{% inline_rich_text field="text" value="" %}
		{% if item2.add_content_box %}
			<!-- HTML to show when checked -->
		{% endif %}
	{% endfor %}
{% endfor %}