aboutsummaryrefslogtreecommitdiff
path: root/_layouts/post.html
diff options
context:
space:
mode:
Diffstat (limited to '_layouts/post.html')
-rw-r--r--_layouts/post.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
new file mode 100644
index 0000000..a6936cf
--- /dev/null
+++ b/_layouts/post.html
@@ -0,0 +1,25 @@
1<!doctype html>
2<html lang="en">
3
4 <head>
5 <meta charset="utf-8">
6 <meta name="theme-color" content="#000000">
7 <meta name="description" content="{{ page.description }}">
8 <title>{{ page.title }}</title>
9 </head>
10
11 <body>
12
13 {% include header.html %}
14
15 <h1>post</h1>
16
17 <article>
18 {{ content }}
19 </article>
20
21 {% include footer.html %}
22
23 </body>
24
25</html>