|
@@ -1,4 +1,9 @@
|
|
|
{{ $current_page := . }}
|
|
|
+{{ $menu_name := .Section }}
|
|
|
+{{ with (index .Site.Menus $menu_name) }}
|
|
|
+{{ else }}
|
|
|
+{{ errorf "Please define menu items named `[menu.%s]` in your %s front matter or in `config.toml`." $menu_name $menu_name }}
|
|
|
+{{ end }}
|
|
|
|
|
|
{{ if eq $.Site.Params.search.engine 1 }}
|
|
|
<form class="docs-search d-flex align-items-center">
|
|
@@ -7,20 +12,22 @@
|
|
|
{{ end }}
|
|
|
|
|
|
<nav class="docs-links" id="docs-nav">
|
|
|
- {{ range .Site.Menus.docs.ByWeight }}
|
|
|
- <div class="docs-toc-item{{ if $current_page.IsMenuCurrent "docs" . }} active{{ end }}">
|
|
|
+ {{ with (index .Site.Menus $menu_name) }}
|
|
|
+ {{ range (index $.Site.Menus $menu_name).ByWeight }}
|
|
|
+ <div class="docs-toc-item{{ if $current_page.IsMenuCurrent $menu_name . }} active{{ end }}">
|
|
|
<a class="docs-toc-link" {{ if .URL }}href="{{ .URL }}"{{else if .HasChildren }}href="{{ (index .Children 0).URL }}"{{end}}>{{ .Name }}</a>
|
|
|
|
|
|
{{- if .HasChildren }}
|
|
|
<ul class="nav docs-sidenav">
|
|
|
{{ range .Children }}
|
|
|
- <li {{ if $current_page.IsMenuCurrent "docs" . }}class="active"{{ end }}>
|
|
|
+ <li {{ if $current_page.IsMenuCurrent $menu_name . }}class="active"{{ end }}>
|
|
|
<a href="{{ .URL }}">{{ .Name }}</a>
|
|
|
</li>
|
|
|
{{ end }}
|
|
|
</ul>
|
|
|
- {{ end }}
|
|
|
+ {{ end }}
|
|
|
|
|
|
</div>
|
|
|
{{ end }}
|
|
|
+ {{ end }}
|
|
|
</nav>
|