mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2024-11-22 19:39:30 +00:00
23 lines
602 B
HTML
23 lines
602 B
HTML
<nav>
|
|
{{ partial "docs/brand" . }}
|
|
{{ partial "docs/search" . }}
|
|
|
|
{{ partial "docs/inject/menu-before" . }}
|
|
{{ partial "docs/menu-hugo" .Site.Menus.before }}
|
|
|
|
{{ if .Site.Params.BookMenuBundle }}
|
|
{{ partial "docs/menu-bundle" . }}
|
|
{{ else }}
|
|
{{ partial "docs/menu-filetree" . }}
|
|
{{ end }}
|
|
|
|
{{ partial "docs/menu-hugo" .Site.Menus.after }}
|
|
{{ partial "docs/inject/menu-after" . }}
|
|
</nav>
|
|
|
|
<!-- Restore menu position as soon as possible to avoid flickering -->
|
|
{{ $script := resources.Get "menu-reset.js" | resources.Minify }}
|
|
{{ with $script.Content }}
|
|
<script>{{ . | safeJS }}</script>
|
|
{{ end }}
|