diff options
author | Alex Shpak <alex-shpak@users.noreply.github.com> | 2019-01-24 23:30:31 +0100 |
---|---|---|
committer | Alex Shpak <alex-shpak@users.noreply.github.com> | 2019-01-24 23:30:31 +0100 |
commit | 4ce973a4e2ee74ff4cba33ea3c8bb8761c8e70ef (patch) | |
tree | 54ea5013573f11dcf7e52a5d06f2ec0a9d4c7db9 /layouts/posts/baseof.html | |
parent | d746c8eec369cc76fb9937f7838172ba40d3bf0f (diff) |
Add menu to blog pages
Diffstat (limited to 'layouts/posts/baseof.html')
-rw-r--r-- | layouts/posts/baseof.html | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/layouts/posts/baseof.html b/layouts/posts/baseof.html index fa97ee3..bbf5d45 100644 --- a/layouts/posts/baseof.html +++ b/layouts/posts/baseof.html @@ -8,9 +8,18 @@ </head> <body> - <main class="book-posts mx-auto"> - {{ template "main" . }} + <input type="checkbox" style="display: none" id="menu-control" /> + <main class="flex container"> + <aside class="book-menu fixed"> + {{ partial "docs/menu" . }} + </aside> + + <div class="book-posts mr-auto"> + {{ partial "docs/mobile-header" . }} + {{ template "main" . }} + </div> </main> + {{ partial "docs/inject/body" . }} {{ template "_internal/google_analytics_async.html" . }} |