119 lines
4.6 KiB
HTML
119 lines
4.6 KiB
HTML
<aside>
|
|
<ul class="list-unstyled collapsible-sidebar">
|
|
{{ $currentPage := . }}
|
|
{{ range .Site.Menus.docs }}
|
|
{{ if .HasChildren }}
|
|
<li class="{{ if $currentPage.HasMenuCurrent "docs" . }}active{{ end }}">
|
|
<a href="#">
|
|
{{ .Pre }}
|
|
<span>{{ .Name }}</span>
|
|
</a>
|
|
</li>
|
|
<ul class="sub-menu">
|
|
{{ range .Children }}
|
|
|
|
|
|
{{ if .HasChildren }}
|
|
<li class="{{ if $currentPage.HasMenuCurrent "docs" . }}active{{ end }}">
|
|
<a href="#">
|
|
{{ .Pre }}
|
|
<span>{{ .Name }}</span>
|
|
</a>
|
|
</li>
|
|
<ul class="sub-menu">
|
|
{{ range .Children }}
|
|
|
|
|
|
{{ if .HasChildren }}
|
|
<li class="{{ if $currentPage.HasMenuCurrent "docs" . }}active{{ end }}">
|
|
<a href="#">
|
|
{{ .Pre }}
|
|
<span>{{ .Name }}</span>
|
|
</a>
|
|
</li>
|
|
<ul class="sub-menu">
|
|
{{ range .Children }}
|
|
<li class="{{ if $currentPage.IsMenuCurrent "docs" . }}active{{ end }}">
|
|
<a href="{{ .URL }}">{{ .Name }}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ else }}
|
|
<li>
|
|
<a href="{{ .URL }}">
|
|
{{ .Pre }}
|
|
<span>{{ .Name }}</span>
|
|
</a>
|
|
</li>
|
|
{{ end }}
|
|
|
|
|
|
{{ end }}
|
|
</ul>
|
|
{{ else }}
|
|
<li>
|
|
<a href="{{ .URL }}">
|
|
{{ .Pre }}
|
|
<span>{{ .Name }}</span>
|
|
</a>
|
|
</li>
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ end }}
|
|
</ul>
|
|
{{ else }}
|
|
<li>
|
|
<a href="{{ .URL }}">
|
|
{{ .Pre }}
|
|
<span>{{ .Name }}</span>
|
|
</a>
|
|
</li>
|
|
{{ end }}
|
|
{{ end }}
|
|
</ul>
|
|
</aside>
|
|
|
|
<!--
|
|
{{ if .Site.Params.options.collapsibleSidebar -}}
|
|
<ul class="list-unstyled collapsible-sidebar">
|
|
{{ $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 -}}
|
|
{{- $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 -}}
|
|
</ul>
|
|
</div>
|
|
{{ end -}}
|
|
</li>
|
|
{{ end -}}
|
|
</ul>
|
|
{{ else -}}
|
|
{{ $currentPage := . -}}
|
|
{{ range .Site.Menus.docs -}}
|
|
<h3 class="h6 text-uppercase">{{ .Name }}</h3>
|
|
{{ 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 -}}
|
|
{{ end -}}
|
|
{{ end -}}
|
|
-->
|