mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2025-07-16 19:51:22 +00:00
23 lines
626 B
HTML
23 lines
626 B
HTML
<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>
|
|
|
|
<a href="{{ "about" | relLangURL }}">About</a>
|
|
<!-- 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 }}
|