summaryrefslogtreecommitdiff
path: root/layouts/partials/recursive_nav.html
blob: 763c3b6d085522f170e4802378070e7650db1760 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12

{{ $currentPage := .currentPage }}
<ul>
	{{ range .pages }}
		{{ $isCurrentOrAncestor := or (eq $currentPage .) ($currentPage.IsDescendant .) }}
		<li {{ if eq $currentPage . }}class="nav-current"{{ end }}>
			<a href="{{ .RelPermalink }}">{{ .Title }}</a>
		</li>
		{{ if .Pages }}
			{{ partial "recursive_nav.html" (dict "currentPage" $currentPage "pages" .Pages) }}
		{{ end }}
	{{ end }}
</ul>