41 lines
2.0 KiB
HTML
41 lines
2.0 KiB
HTML
<!-- Manual default section menu -->
|
|
{{ $currentPage := . -}}
|
|
{{ $section := $currentPage.Section -}}
|
|
{{ range (index .Site.Menus $section) -}}
|
|
<h3 class="h6 text-uppercase mb-2">{{ .Name }}</h3>
|
|
{{ if .HasChildren -}}
|
|
<ul class="list-unstyled">
|
|
{{ range .Children -}}
|
|
{{ if .HasChildren -}}
|
|
<h4 class="h6 text-uppercase ms-3 mt-3 mb-2">{{ .Name }}</h4>
|
|
{{ if .HasChildren -}}
|
|
<ul class="list-unstyled ms-3">
|
|
{{ range .Children -}}
|
|
{{ if .HasChildren -}}
|
|
<h5 class="h6 text-uppercase mt-2 mb-2">{{ .Name }}</h5>
|
|
{{ if .HasChildren -}}
|
|
<ul class="list-unstyled ms-3">
|
|
{{ range .Children -}}
|
|
{{- $active := or ($currentPage.IsMenuCurrent $section .) ($currentPage.HasMenuCurrent $section .) -}}
|
|
{{- $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 -}}
|
|
{{ else -}}
|
|
{{- $active := or ($currentPage.IsMenuCurrent $section .) ($currentPage.HasMenuCurrent $section .) -}}
|
|
{{- $active = or $active (eq $currentPage.Section .Identifier) -}}
|
|
<li><a class="docs-link{{ if $active }} active{{ end }}" href="{{ .URL | relURL }}">{{ .Name }}</a></li>
|
|
{{ end -}}
|
|
{{ end -}}
|
|
</ul>
|
|
{{ end -}}
|
|
{{ else -}}
|
|
{{- $active := or ($currentPage.IsMenuCurrent $section .) ($currentPage.HasMenuCurrent $section .) -}}
|
|
{{- $active = or $active (eq $currentPage.Section .Identifier) -}}
|
|
<li><a class="docs-link{{ if $active }} active{{ end }}" href="{{ .URL | relURL }}">{{ .Name }}</a></li>
|
|
{{ end -}}
|
|
{{ end -}}
|
|
</ul>
|
|
{{ end -}}
|
|
{{ end -}} |