{% for item in request.site.root_page.get_children.live.in_menu %}
- {% with item.get_children.live.in_menu as children %}
- {% if children %}
+ {% with item.get_children.live.in_menu as parents %}
+ {% if parents %}
- {% for child in children %}
-
- {{ child }}
+ {% for parent in parents %}
+
+ {{ parent }}
+ {% with parent.get_children.live.in_menu as children %}
+ {% if children %}
+ {% for child in children %}
+
+ {{ child }}
+
+ {% endfor %}
+ {% endif %}
+ {% endwith %}
+ {% if not forloop.last %}
+
+ {% endif %}
{% endfor %}