diff options
Diffstat (limited to '')
| -rw-r--r-- | themes/hugo-book/layouts/partials/docs/menu.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/themes/hugo-book/layouts/partials/docs/menu.html b/themes/hugo-book/layouts/partials/docs/menu.html new file mode 100644 index 0000000..dbb2e49 --- /dev/null +++ b/themes/hugo-book/layouts/partials/docs/menu.html @@ -0,0 +1,21 @@ +<nav> +{{ partial "docs/brand" . }} +{{ partial "docs/search" . }} +{{ if hugo.IsMultilingual }} + {{ partial "docs/languages" . }} +{{ end }} + +{{ partial "docs/inject/menu-before" . }} +{{ partial "docs/menu-hugo" .Site.Menus.before }} + +{{ partial "docs/menu-filetree" . }} + +{{ 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 }} |
