diff options
Diffstat (limited to 'layouts/docs')
-rw-r--r-- | layouts/docs/baseof.html | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/layouts/docs/baseof.html b/layouts/docs/baseof.html index 8509b14..f7e8477 100644 --- a/layouts/docs/baseof.html +++ b/layouts/docs/baseof.html @@ -10,7 +10,18 @@ <div class="pure-g"> <div class="pure-u book-nav"> - {{ partial "docs/nav" . }} + <nav role="navigation"> + {{ partial "docs/nav-brand" . }} + {{ partial "docs/inject/nav-before" . }} + + {{ if .Site.Params.BookMenuBundle }} + {{ partial "docs/nav-bundle" . }} + {{ else }} + {{ partial "docs/nav-filetree" . }} + {{ end }} + + {{ partial "docs/inject/nav-after" . }} + </nav> </div> <div class="pure-u book-content"> <div class="pure-g"> |