summaryrefslogtreecommitdiff
path: root/layouts/posts/baseof.html
diff options
context:
space:
mode:
authorAlex Shpak <alex-shpak@users.noreply.github.com>2019-12-09 11:19:24 +0100
committerAlex Shpak <alex-shpak@users.noreply.github.com>2019-12-09 11:24:31 +0100
commite01674c287fd18c9ef01d11888a83283a2439380 (patch)
tree98669d9fde02d7c140f15c731861d31ea433a470 /layouts/posts/baseof.html
parent3f463aeb0cc354a7cd8658ca6b06e61838417ac0 (diff)
Move baseof to _default folder, making it default view of site
Diffstat (limited to 'layouts/posts/baseof.html')
-rw-r--r--layouts/posts/baseof.html30
1 files changed, 0 insertions, 30 deletions
diff --git a/layouts/posts/baseof.html b/layouts/posts/baseof.html
deleted file mode 100644
index 9777d48..0000000
--- a/layouts/posts/baseof.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!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-posts">
- {{ partial "docs/mobile-header" . }}
- {{ template "main" . }}
- {{ partial "docs/footer" . }}
- {{ partial "docs/inject/footer" . }}
- </div>
-
- {{ template "toc" . }}
- </main>
-
- {{ partial "docs/inject/body" . }}
-</body>
-
-</html>