{%- assign pages_list = site.html_pages | sort:"nav_order" -%} {%- for node in pages_list -%} {%- unless node.nav_exclude -%} {%- if node.parent == nil -%}
  • {%- if page.parent == node.title or page.grand_parent == node.title -%} {%- assign first_level_url = node.url | absolute_url -%} {%- endif -%} {{ node.title }} {%- if node.has_children -%} {%- assign children_list = site.html_pages | where: "parent", node.title | sort:"nav_order" -%}
      {%- for child in children_list -%}
    • {%- if page.url == child.url or page.parent == child.title -%} {%- assign second_level_url = child.url | absolute_url -%} {%- endif -%} {{ child.title }} {%- if child.has_children -%} {%- if page.url == child.url or page.parent == child.title or site.grandchildren_branch != true -%} {%- assign grand_children_list = site.html_pages | where: "parent", child.title | sort:"nav_order" -%}
        {%- for grand_child in grand_children_list -%}
      • {{ grand_child.title }}
      • {%- endfor -%}
      {%- endif -%} {%- endif -%}
    • {%- endfor -%}
    {%- endif -%}
  • {%- endif -%} {%- endunless -%} {%- endfor -%}