{%- for node in include.nav -%}
  • {%- if node.children -%} {%- endif -%} {{ node.title }} {%- if node.children -%}
      {%- for child in node.children -%}
    • {%- if child.children -%} {%- endif -%} {{ child.title }} {%- if child.children -%}
        {%- for grand_child in child.children -%}
      • {{ grand_child.title }}
      • {%- endfor -%}
      {%- endif -%}
    • {%- endfor -%}
    {%- endif -%}
  • {%- endfor -%}