hugo-theme-hilfe/layouts/partials/menu-filetree.html

33 lines
1.1 KiB
HTML
Raw Normal View History

2020-01-12 15:33:02 +01:00
{{ $current := . }}
{{ template "tree-nav" dict "sect" .Site.Home.Sections "current" $current }}
<!-- templates -->
{{ define "tree-nav" }}
{{ $current := .current }}
<ul class="gdoc-nav__list">
2020-02-05 16:46:29 +01:00
{{ range .sect.GroupBy "Weight" }}
2020-01-12 15:33:02 +01:00
{{ range .ByTitle }}
2020-11-11 11:48:25 +01:00
{{ if not .Params.GeekdocHidden }}
2020-01-12 15:33:02 +01:00
<li>
2020-11-11 11:48:25 +01:00
{{ if or .Content .Params.GeekdocFlatSection }}
2020-01-12 15:33:02 +01:00
<span class="flex">
<a href="{{ .RelPermalink }}" class="gdoc-nav__entry {{ if eq $current . }}is-active{{ end }}">
{{ partial "title" . }}
</a>
</span>
{{ else }}
<span class="flex">{{ partial "title" . }}</span>
{{ end }}
{{ $numberOfPages := (add (len .Pages) (len .Sections)) }}
2020-11-11 11:48:25 +01:00
{{ if and (ne $numberOfPages 0) (not .Params.GeekdocFlatSection) }}
2020-01-12 15:33:02 +01:00
{{ template "tree-nav" dict "sect" .Pages "current" $current}}
{{ end }}
</li>
{{ end }}
2020-01-12 15:33:02 +01:00
{{ end }}
{{ end }}
</ul>
{{ end }}