diff options
author | Shane Liesegang <sjml@users.noreply.github.com> | 2020-01-17 14:32:36 -0500 |
---|---|---|
committer | Alex Shpak <alex-shpak@users.noreply.github.com> | 2020-01-17 20:32:36 +0100 |
commit | bce8940c62f04770222354921f0274a1986ab100 (patch) | |
tree | 69e5a07785fd5066a45484d0d7c3b056c04a34e0 /layouts | |
parent | c43a00feb2b0599aae42382d3f50fa4c07b26481 (diff) |
Removing flex from <main> for sake of print layout (#129)
* Removing flex from <main> for sake of print layout
* trimming excess whitespace
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/_default/baseof.html | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 0d28f76..a2eb80e 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -9,11 +9,8 @@ <body> <input type="checkbox" class="hidden" id="toc-control" /> <input type="checkbox" class="hidden" id="menu-control" /> - <main class="flex container"> - - <aside class="book-menu fixed"> - {{ partial "docs/menu" . }} - </aside> + <main class="container"> + {{ template "toc" . }} <div class="book-page"> {{ partial "docs/mobile-header" . }} @@ -22,7 +19,9 @@ {{ partial "docs/inject/footer" . }} </div> - {{ template "toc" . }} + <aside class="book-menu fixed"> + {{ partial "docs/menu" . }} + </aside> </main> {{ partial "docs/inject/body" . }} |