Back to Influxdb

Nested Menu

layouts/partials/sidebar/nested-menu.html

latest567 B
Original Source

{{ $page := .page }} {{ $menu := .menu }} {{ define "recursiveMenu" }} {{ $menuContext := .menu }} {{ $currentPage := .currentPage }} {{ $depth := add .depth 1 }} {{ $navClass := cond (gt $depth 1) "item" "category" }} {{ range $menuContext }}

  • {{ if .HasChildren }}{{ end }} {{ .Name }} {{ if .HasChildren }} {{ template "recursiveMenu" (dict "menu" .Children "currentPage" $currentPage "depth" $depth) }} {{ end }} {{ end }} {{ end }} {{ template "recursiveMenu" (dict "menu" .menu "currentPage" .page "depth" 0) }}