{% load wagtailcore_tags %} {# Renderiza L2 (filhos do section) e L3 (filhos dos filhos) para o mega menu #} {% for l2 in parent.get_children.live %}
{{ l2.title }} {% with l3_pages=l2.get_children.live %} {% if l3_pages %}
{% for l3 in l3_pages %} {{ l3.title }} {% endfor %}
{% endif %} {% endwith %}
{% endfor %}