2020-01-12 15:33:02 +01:00
|
|
|
{{ $current := . }}
|
|
|
|
{{ template "tree-nav" dict "sect" .Site.Home.Sections "current" $current }}
|
|
|
|
|
2022-01-06 13:58:10 +01:00
|
|
|
|
2020-01-12 15:33:02 +01:00
|
|
|
<!-- templates -->
|
|
|
|
{{ define "tree-nav" }}
|
2022-01-06 13:58:10 +01:00
|
|
|
{{ $current := .current }}
|
2020-01-12 15:33:02 +01:00
|
|
|
|
2021-11-12 08:57:07 +01:00
|
|
|
|
2022-01-06 13:58:10 +01:00
|
|
|
<ul class="gdoc-nav__list">
|
|
|
|
{{ $sortBy := (default "title" .current.Site.Params.GeekdocFileTreeSortBy | lower) }}
|
|
|
|
{{ range .sect.GroupBy "Weight" }}
|
|
|
|
{{ $rangeBy := .ByTitle }}
|
2021-11-12 08:57:07 +01:00
|
|
|
|
2022-01-06 13:58:10 +01:00
|
|
|
{{ if eq $sortBy "title" }}
|
|
|
|
{{ $rangeBy = .ByTitle }}
|
|
|
|
{{ else if eq $sortBy "linktitle" }}
|
|
|
|
{{ $rangeBy = .ByLinkTitle }}
|
|
|
|
{{ else if eq $sortBy "date" }}
|
|
|
|
{{ $rangeBy = .ByDate }}
|
|
|
|
{{ else if eq $sortBy "publishdate" }}
|
|
|
|
{{ $rangeBy = .ByPublishDate }}
|
|
|
|
{{ else if eq $sortBy "expirydate" }}
|
|
|
|
{{ $rangeBy = .ByExpiryDate }}
|
|
|
|
{{ else if eq $sortBy "lastmod" }}
|
|
|
|
{{ $rangeBy = .ByLastmod }}
|
|
|
|
{{ else if eq $sortBy "title_reverse" }}
|
|
|
|
{{ $rangeBy = .ByTitle.Reverse }}
|
|
|
|
{{ else if eq $sortBy "linktitle_reverse" }}
|
|
|
|
{{ $rangeBy = .ByLinkTitle.Reverse }}
|
|
|
|
{{ else if eq $sortBy "date_reverse" }}
|
|
|
|
{{ $rangeBy = .ByDate.Reverse }}
|
|
|
|
{{ else if eq $sortBy "publishdate_reverse" }}
|
|
|
|
{{ $rangeBy = .ByPublishDate.Reverse }}
|
|
|
|
{{ else if eq $sortBy "expirydate_reverse" }}
|
|
|
|
{{ $rangeBy = .ByExpiryDate.Reverse }}
|
|
|
|
{{ else if eq $sortBy "lastmod_reverse" }}
|
|
|
|
{{ $rangeBy = .ByLastmod.Reverse }}
|
|
|
|
{{ end }}
|
2020-11-16 22:47:50 +01:00
|
|
|
|
2022-01-06 13:58:10 +01:00
|
|
|
{{ range $rangeBy }}
|
|
|
|
{{ if not .Params.GeekdocHidden }}
|
|
|
|
{{ $numberOfPages := (add (len .Pages) (len .Sections)) }}
|
|
|
|
{{ $isParent := and (ne $numberOfPages 0) (not .Params.GeekdocFlatSection) }}
|
|
|
|
{{ $isCurrent := eq $current . }}
|
|
|
|
{{ $isAncestor := .IsAncestor $current }}
|
|
|
|
{{ $id := substr (sha1 .Permalink) 0 8 }}
|
|
|
|
{{ $doCollapse := and $isParent (or .Params.GeekdocCollapseSection (default false .Site.Params.GeekdocCollapseAllSections)) }}
|
|
|
|
|
|
|
|
|
|
|
|
<li>
|
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
{{ if $doCollapse }}
|
|
|
|
class="gdoc-nav__toggle" id="{{ printf "navtree-%s" $id }}"
|
|
|
|
{{ if or $isCurrent $isAncestor }}checked{{ end }}
|
|
|
|
{{ else }}
|
|
|
|
class="hidden"
|
|
|
|
{{ end }}
|
|
|
|
/>
|
|
|
|
<label
|
|
|
|
{{ if $doCollapse }}
|
2022-04-23 15:14:42 +02:00
|
|
|
for="{{ printf "navtree-%s" $id }}" class="flex justify-between align-center"
|
2022-01-06 13:58:10 +01:00
|
|
|
{{ end }}
|
|
|
|
>
|
|
|
|
{{ if or .Content .Params.GeekdocFlatSection }}
|
2020-01-12 15:33:02 +01:00
|
|
|
<span class="flex">
|
2022-01-06 13:58:10 +01:00
|
|
|
<a
|
|
|
|
href="{{ .RelPermalink }}"
|
2022-02-07 10:57:43 +01:00
|
|
|
class="gdoc-nav__entry{{- if eq $current . }}
|
|
|
|
{{- printf " is-active" }}
|
|
|
|
{{- end }}"
|
2022-01-06 13:58:10 +01:00
|
|
|
>
|
2022-02-07 10:57:43 +01:00
|
|
|
{{ partial "utils/title" . }}
|
2022-01-06 13:58:10 +01:00
|
|
|
</a>
|
2020-01-12 15:33:02 +01:00
|
|
|
</span>
|
2022-01-06 13:58:10 +01:00
|
|
|
{{ else }}
|
2022-02-07 10:57:43 +01:00
|
|
|
<span class="flex">{{ partial "utils/title" . }}</span>
|
2022-01-06 13:58:10 +01:00
|
|
|
{{ end }}
|
|
|
|
{{ if $doCollapse }}
|
2022-04-18 20:33:23 +02:00
|
|
|
<svg class="gdoc-icon toggle gdoc_keyboard_arrow_left">
|
2022-01-27 22:03:12 +01:00
|
|
|
<use xlink:href="#gdoc_keyboard_arrow_left"></use>
|
2022-01-06 13:58:10 +01:00
|
|
|
</svg>
|
2022-04-18 20:33:23 +02:00
|
|
|
<svg class="gdoc-icon toggle gdoc_keyboard_arrow_down">
|
2022-01-27 22:03:12 +01:00
|
|
|
<use xlink:href="#gdoc_keyboard_arrow_down"></use>
|
2022-01-06 13:58:10 +01:00
|
|
|
</svg>
|
|
|
|
{{ end }}
|
2020-11-16 22:47:50 +01:00
|
|
|
</label>
|
2020-01-12 15:33:02 +01:00
|
|
|
|
2020-11-16 22:47:50 +01:00
|
|
|
{{ if $isParent }}
|
2022-01-06 13:58:10 +01:00
|
|
|
{{ template "tree-nav" dict "sect" .Pages "current" $current }}
|
2020-01-12 15:33:02 +01:00
|
|
|
{{ end }}
|
2022-01-06 13:58:10 +01:00
|
|
|
</li>
|
2020-01-12 15:33:02 +01:00
|
|
|
{{ end }}
|
2022-01-06 13:58:10 +01:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
2020-01-12 15:33:02 +01:00
|
|
|
{{ end }}
|