diff options
author | Alex Shpak <alex-shpak@users.noreply.github.com> | 2018-11-24 15:10:43 +0100 |
---|---|---|
committer | Alex Shpak <alex-shpak@users.noreply.github.com> | 2018-11-24 15:10:43 +0100 |
commit | 7798a5cc7c1d636008f000937e3d096f01dbbde5 (patch) | |
tree | 81c9d2d0fa10105e0813fe2cbaf41d96e9fb6681 /layouts/docs | |
parent | f5736e077a7d50c05c9ca58ef307e4da4e63e6d5 (diff) |
Refactor scss styles
Diffstat (limited to 'layouts/docs')
-rw-r--r-- | layouts/docs/baseof.html | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/layouts/docs/baseof.html b/layouts/docs/baseof.html index a332fc5..6ce7a9b 100644 --- a/layouts/docs/baseof.html +++ b/layouts/docs/baseof.html @@ -9,9 +9,9 @@ <body> <input type="checkbox" style="display: none" id="menu-control" /> - <main> + <main class="flex container"> - <aside class="menu fixed"> + <aside class="book-menu fixed"> <nav role="navigation"> {{ partial "docs/brand" . }} {{ partial "docs/inject/menu-before" . }} @@ -26,10 +26,8 @@ </nav> </aside> - <div class="content"> - <header> - {{ partial "docs/mobile-header" . }} - </header> + <div class="book-page"> + {{ partial "docs/mobile-header" . }} <article class="markdown"> {{- .Content -}} </article> @@ -37,14 +35,13 @@ {{ $showToC := default (default true .Site.Params.BookShowToC) .Params.bookshowtoc }} {{ if and ($showToC) (.Page.TableOfContents) }} - <aside class="toc fixed"> + <aside class="book-toc fixed"> {{ partial "docs/toc" . }} </aside> {{ end }} + {{ partial "docs/inject/body" . }} </main> - {{ partial "docs/inject/body" . }} - </body> </html>
\ No newline at end of file |