{% set children = (item.level == 1 ? item.group(group) : item.children) %}

<div class="submenu-level">Level {{ item.level }}</div>
<ul class="submenu-items" data-mm-base="{{ item.path }}" data-mm-base-level="{{ item.level }}">
    {%- if item.level > 1 %}
        <li>
            <a class="menu-item menu-item-back"
               data-g5-ajaxify=""
               data-g5-ajaxify-params="{{ {'inline': 1, 'group': group}|json_encode|escape('html_attr') }}"
               data-g5-ajaxify-target-parent=".submenu-column"
               href="{{ gantry.route('menu', id, item.parent.path) }}"
            >
                {% for i in range(1, item.level-1) %}
                <i class="fa fa-fw fa-chevron-left" aria-hidden="true"></i> &nbsp;
                {% endfor %}
            </a>
        </li>
    {% endif -%}
    {%- for child in children %}
        {% set is_particle = child.type == 'particle' or child.type == 'module' %}
        <li data-mm-id="{{ child.path }}"
            data-mm-level="{{ child.level }}"
            {% if is_particle %}
            class="g-menu-removable g-menu-item-{{ child.type }}{% if child.options.particle.enabled == false %} g-menu-item-disabled{% endif %}"
            data-mm-original-type="{{ child.type }}"
            {% else %}
            class="{% if child.enabled == false %}g-menu-item-disabled{% endif %}"
            {% endif %}
        >
            {% include 'menu/item.html.twig' with {'item': child, 'target': 'list-' ~ group } %}
        </li>
    {% endfor -%}
</ul>
<span class="submenu-reorder"><i class="fa fa-fw fa-arrows-h fa-arrows-alt-h" aria-hidden="true"></i></span>
