about summary refs log tree commit diff
path: root/layouts/partials/root-toc.html
blob: 2792ce930d13a877dcc39baa02e8f7c5af499764 (plain) (blame)
1
2
3
4
5
6
7
8
	<details class="toc-collapse">
		<summary>{{ i18n "toc" }}</summary>
		{{ $currentLink := .RelPermalink }}
		{{ range last 1 (where .Ancestors "Params.categories" "intersect" (slice "book") ) }}
		<a href="{{ .RelPermalink }}">{{ .Title }}</a>
		{{ partial "toc.html" (dict "content" . "currentLink" $currentLink) }}
		{{ end }}
	</details>