aboutsummaryrefslogtreecommitdiff
path: root/layouts/posts/baseof.html
diff options
context:
space:
mode:
authorAlex Shpak <alex-shpak@users.noreply.github.com>2018-11-24 15:14:43 +0100
committerAlex Shpak <alex-shpak@users.noreply.github.com>2018-11-24 15:14:43 +0100
commit2a89630a47358edd3351bd8ad90ab03bd507bd59 (patch)
treeb433e5012c6ab8f568b7555166f758a991584d56 /layouts/posts/baseof.html
parent7798a5cc7c1d636008f000937e3d096f01dbbde5 (diff)
Add simple blog rendering
Diffstat (limited to 'layouts/posts/baseof.html')
-rw-r--r--layouts/posts/baseof.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/layouts/posts/baseof.html b/layouts/posts/baseof.html
new file mode 100644
index 0000000..d147c1e
--- /dev/null
+++ b/layouts/posts/baseof.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+{{- partial "docs/shared" -}}
+<html>
+
+<head>
+ {{ partial "docs/html-head" . }}
+ {{ partial "docs/inject/head" . }}
+</head>
+
+<body>
+ <main>
+ <div class="book-posts mx-auto">
+ {{ template "main" . }}
+ </div>
+ </main>
+ {{ partial "docs/inject/body" . }}
+
+</body>
+
+</html> \ No newline at end of file