{% for item in nav %}
{{item.title}}
{% if item.active %}
{% for child in item.children %}
{{child.title}}
{% if child.active %}
{% for grandchild in child.children %}
{{grandchild.title}}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}