2022-01-20 15:37:15 +01:00
|
|
|
{{ if and .Site.Params.menu.section.auto .Site.Params.menu.section.collapsibleSidebar -}}
|
|
|
|
<!-- Auto collapsibile section menu, multi level -->
|
|
|
|
<ul class="list-unstyled collapsible-sidebar">
|
|
|
|
{{ $currentPage := . -}}
|
|
|
|
{{ range (where .Site.Sections "Type" "in" site.Params.mainSections) }}
|
|
|
|
{{ range .Sections.Reverse }}
|
|
|
|
{{ $active := in $currentPage.RelPermalink .RelPermalink }}
|
|
|
|
<li class="mb-1">
|
|
|
|
<button class="btn btn-toggle align-items-center rounded collapsed" data-bs-toggle="collapse" data-bs-target="#section-{{ md5 .Title }}" aria-expanded="{{ if $active }}true{{ else }}false{{ end }}">
|
|
|
|
{{ .Title }}
|
|
|
|
</button>
|
|
|
|
<div class="collapse{{ if $active }} show{{ end }}" id="section-{{ md5 .Title }}">
|
|
|
|
<ul class="btn-toggle-nav list-unstyled fw-normal pb-1 small">
|
|
|
|
{{ range .Pages }}
|
|
|
|
{{ if .IsNode }}
|
|
|
|
{{ $active := in $currentPage.RelPermalink .RelPermalink }}
|
|
|
|
<li class="my-1 ms-3">
|
|
|
|
<button class="btn btn-toggle align-items-center rounded collapsed" data-bs-toggle="collapse" data-bs-target="#section-{{ md5 .Title }}" aria-expanded="{{ if $active }}true{{ else }}false{{ end }}">
|
|
|
|
{{ .Title }}
|
|
|
|
</button>
|
|
|
|
<div class="collapse{{ if $active }} show{{ end }}" id="section-{{ md5 .Title }}">
|
|
|
|
<ul class="btn-toggle-nav list-unstyled fw-normal pb-1 small">
|
|
|
|
{{ range .Pages }}
|
|
|
|
{{ if .IsNode }}
|
|
|
|
{{ $active := in $currentPage.RelPermalink .RelPermalink }}
|
|
|
|
<li class="my-1 ms-3">
|
|
|
|
<button class="btn btn-toggle align-items-center rounded collapsed" data-bs-toggle="collapse" data-bs-target="#section-{{ md5 .Title }}" aria-expanded="{{ if $active }}true{{ else }}false{{ end }}">
|
|
|
|
{{ .Title }}
|
|
|
|
</button>
|
|
|
|
<div class="collapse{{ if $active }} show{{ end }}" id="section-{{ md5 .Title }}">
|
|
|
|
<ul class="btn-toggle-nav list-unstyled fw-normal pb-1 small">
|
|
|
|
{{ range .Pages }}
|
|
|
|
{{ $active := in $currentPage.RelPermalink .RelPermalink }}
|
|
|
|
<li><a class="docs-link rounded{{ if $active }} active{{ end }}" href="{{ .Permalink }}">{{ .Title }}</a></li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{{ else }}
|
|
|
|
{{ $active := in $currentPage.RelPermalink .RelPermalink }}
|
|
|
|
<li><a class="docs-link rounded{{ if $active }} active{{ end }}" href="{{ .Permalink }}">{{ .Title }}</a></li>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{{ else }}
|
|
|
|
{{ $active := in $currentPage.RelPermalink .RelPermalink }}
|
|
|
|
<li><a class="docs-link rounded{{ if $active }} active{{ end }}" href="{{ .Permalink }}">{{ .Title }}</a></li>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
{{ else if and .Site.Params.menu.section.auto (not .Site.Params.menu.section.collapsibleSidebar) -}}
|
|
|
|
<!-- Auto default section menu, single level -->
|
|
|
|
|
|
|
|
{{ else if and (not .Site.Params.menu.section.auto) .Site.Params.menu.section.collapsibleSidebar -}}
|
|
|
|
<!-- Manual collapsibile section menu, multi level -->
|
2022-01-18 20:48:17 +01:00
|
|
|
<ul class="list-unstyled collapsible-sidebar">
|
2022-01-19 17:21:41 +01:00
|
|
|
{{ $currentPage := . -}}
|
|
|
|
{{ range $index, $element := .Site.Menus.docs -}}
|
|
|
|
{{- $active := or ($currentPage.IsMenuCurrent "docs" .) ($currentPage.HasMenuCurrent "docs" .) -}}
|
|
|
|
{{- $active = or $active (eq $currentPage.Section .Identifier) -}}
|
|
|
|
<li class="mb-1">
|
|
|
|
<button class="btn btn-toggle align-items-center rounded collapsed" data-bs-toggle="collapse" data-bs-target="#section-{{ .Identifier }}" aria-expanded="{{ if $active }}true{{ else }}false{{ end }}">
|
|
|
|
{{ .Name }}
|
|
|
|
</button>
|
|
|
|
{{ if .HasChildren -}}
|
|
|
|
<div class="collapse{{ if $active }} show{{ end }}" id="section-{{ .Identifier }}">
|
|
|
|
<ul class="btn-toggle-nav list-unstyled fw-normal pb-1 small">
|
|
|
|
{{ range .Children -}}
|
|
|
|
{{ if .HasChildren -}}
|
|
|
|
<li class="my-1 ms-3">
|
|
|
|
<button class="btn btn-toggle align-items-center rounded collapsed" data-bs-toggle="collapse" data-bs-target="#section-{{ .Identifier }}" aria-expanded="{{ if $active }}true{{ else }}false{{ end }}">
|
|
|
|
{{ .Name }}
|
|
|
|
</button>
|
|
|
|
{{ if .HasChildren -}}
|
|
|
|
<div class="collapse{{ if $active }} show{{ end }}" id="section-{{ .Identifier }}">
|
|
|
|
<ul class="btn-toggle-nav list-unstyled fw-normal pb-1 small">
|
|
|
|
{{ range .Children -}}
|
|
|
|
{{ if .HasChildren -}}
|
|
|
|
<li class="my-1 ms-3">
|
|
|
|
<button class="btn btn-toggle align-items-center rounded collapsed" data-bs-toggle="collapse" data-bs-target="#section-{{ .Identifier }}" aria-expanded="{{ if $active }}true{{ else }}false{{ end }}">
|
|
|
|
{{ .Name }}
|
|
|
|
</button>
|
|
|
|
{{ if .HasChildren -}}
|
|
|
|
<div class="collapse{{ if $active }} show{{ end }}" id="section-{{ .Identifier }}">
|
|
|
|
<ul class="btn-toggle-nav list-unstyled fw-normal pb-1 small">
|
|
|
|
{{ range .Children -}}
|
|
|
|
{{- $active := or ($currentPage.IsMenuCurrent "docs" .) ($currentPage.HasMenuCurrent "docs" .) -}}
|
|
|
|
{{- $active = or $active (eq $currentPage.Section .Identifier) -}}
|
|
|
|
<li><a class="docs-link rounded{{ if $active }} active{{ end }}" href="{{ .URL | relURL }}">{{ .Name }}</a></li>
|
|
|
|
{{ end -}}
|
2022-01-18 20:48:17 +01:00
|
|
|
</ul>
|
2022-01-19 17:21:41 +01:00
|
|
|
</div>
|
|
|
|
{{ end -}}
|
|
|
|
</li>
|
|
|
|
{{ else -}}
|
|
|
|
{{- $active := or ($currentPage.IsMenuCurrent "docs" .) ($currentPage.HasMenuCurrent "docs" .) -}}
|
|
|
|
{{- $active = or $active (eq $currentPage.Section .Identifier) -}}
|
|
|
|
<li><a class="docs-link rounded{{ if $active }} active{{ end }}" href="{{ .URL | relURL }}">{{ .Name }}</a></li>
|
|
|
|
{{ end -}}
|
|
|
|
{{ end -}}
|
2022-01-18 20:48:17 +01:00
|
|
|
</ul>
|
2022-01-19 17:21:41 +01:00
|
|
|
</div>
|
|
|
|
{{ end -}}
|
|
|
|
</li>
|
|
|
|
{{ else -}}
|
|
|
|
{{- $active := or ($currentPage.IsMenuCurrent "docs" .) ($currentPage.HasMenuCurrent "docs" .) -}}
|
|
|
|
{{- $active = or $active (eq $currentPage.Section .Identifier) -}}
|
|
|
|
<li><a class="docs-link rounded{{ if $active }} active{{ end }}" href="{{ .URL | relURL }}">{{ .Name }}</a></li>
|
|
|
|
{{ end -}}
|
|
|
|
{{ end -}}
|
|
|
|
</ul>
|
|
|
|
</div>
|
2021-04-20 14:57:42 +02:00
|
|
|
{{ end -}}
|
2022-01-19 17:21:41 +01:00
|
|
|
</li>
|
|
|
|
{{ end -}}
|
2020-04-15 15:48:16 +02:00
|
|
|
</ul>
|
2022-01-20 15:37:15 +01:00
|
|
|
{{ else if and (not .Site.Params.menu.section.auto) (not .Site.Params.menu.section.collapsibleSidebar) -}}
|
|
|
|
<!-- Manual default section menu, single level -->
|
2021-04-20 14:57:42 +02:00
|
|
|
{{ $currentPage := . -}}
|
|
|
|
{{ range .Site.Menus.docs -}}
|
2021-09-07 12:08:46 +02:00
|
|
|
<h3 class="h6 text-uppercase">{{ .Name }}</h3>
|
2021-04-20 14:57:42 +02:00
|
|
|
{{ if .HasChildren -}}
|
|
|
|
<ul class="list-unstyled">
|
|
|
|
{{ range .Children -}}
|
|
|
|
{{- $active := or ($currentPage.IsMenuCurrent "docs" .) ($currentPage.HasMenuCurrent "docs" .) -}}
|
|
|
|
{{- $active = or $active (eq $currentPage.Section .Identifier) -}}
|
|
|
|
<li><a class="docs-link{{ if $active }} active{{ end }}" href="{{ .URL | relURL }}">{{ .Name }}</a></li>
|
|
|
|
{{ end -}}
|
|
|
|
</ul>
|
|
|
|
{{ end -}}
|
2020-04-15 15:48:16 +02:00
|
|
|
{{ end -}}
|
2022-01-18 20:48:17 +01:00
|
|
|
{{ end -}}
|