diff options
Diffstat (limited to 'layouts/_default')
-rw-r--r-- | layouts/_default/baseof.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..38630a7 --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,30 @@ +<!DOCTYPE html> +<html lang="{{ .Site.Language.Lang }}"> + +<head> + {{ partial "docs/html-head" . }} + {{ partial "docs/inject/head" . }} +</head> + +<body> + <input type="checkbox" class="hidden" id="menu-control" /> + <main class="flex container"> + + <aside class="book-menu fixed"> + {{ partial "docs/menu" . }} + </aside> + + <div class="book-page"> + {{ partial "docs/mobile-header" . }} + {{ template "main" . }} + {{ partial "docs/footer" . }} + {{ partial "docs/inject/footer" . }} + </div> + + {{ template "toc" . }} + </main> + + {{ partial "docs/inject/body" . }} +</body> + +</html> |