{% for item in module.menu.level_1 %}
	{% inline_text field="label1" value="" %}

	{% for item2 in item.level_2 %}
		{% inline_text field="label2" value="" %}
		{% if item2.image_field.src %}
			{% set sizeAttrs = 'width="" height=""' %}
			{% if item2.image_field.size_type == 'auto' %}
				{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
			{% elif item2.image_field.size_type == 'auto_custom_max' %}
				{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
			{% endif %}
			 {% set loadingAttr = item2.image_field.loading != 'disabled' ? 'loading=""' : '' %}
			<img src="" alt=""  >
		{% endif %}
		{% set href = item2.link_field_1.url.href %}
		{% if item2.link_field_1.url.type is equalto "EMAIL_ADDRESS" %}
		  {% set href = "mailto:" + href %}
		{% elif item2.link_field_1.url.type is equalto "PHONE_NUMBER" %}
		  {% set href = "tel:" + href %}
		{% endif %}
		<a
		  {% if item2.link_field_1.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_field_1.open_in_new_tab %}
		    target="_blank"
		  {% endif %}
		  {% if item2.link_field_1.rel %}
		    rel=""
		  {% endif %}
		  >
		  Link text
		</a>
		{% for item3 in item2.level_3 %}
			{% inline_text field="label3" value="" %}
			{% set href = item3.link.url.href %}
			{% if item3.link.url.type is equalto "EMAIL_ADDRESS" %}
			  {% set href = "mailto:" + href %}
			{% elif item3.link.url.type is equalto "PHONE_NUMBER" %}
			  {% set href = "tel:" + href %}
			{% endif %}
			<a
			  {% if item3.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 item3.link.open_in_new_tab %}
			    target="_blank"
			  {% endif %}
			  {% if item3.link.rel %}
			    rel=""
			  {% endif %}
			  >
			  Link text
			</a>
		{% endfor %}
	{% endfor %}
{% endfor %}