aboutsummaryrefslogtreecommitdiff
path: root/template/post.html
diff options
context:
space:
mode:
Diffstat (limited to 'template/post.html')
-rwxr-xr-xtemplate/post.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/template/post.html b/template/post.html
new file mode 100755
index 0000000..88a2c7f
--- /dev/null
+++ b/template/post.html
@@ -0,0 +1,31 @@
1<!doctype html>
2<html lang="en">
3
4 <head>
5 {{template "_meta.html"}}
6
7 <title>{{.Title}}</title>
8 <meta name="description" content="{{.Description}}">
9 </head>
10
11 <body>
12
13 {{template "_navigation.html"}}
14
15 <main class="wrapper">
16 <article itemtype="http://schema.org/Article">
17 <header>
18 <h1 itemtype="headline">{{.Title}}</h1>
19 <time>{{.Created}}</time>
20 </header>
21 <div>
22 {{.Content}}
23 </div>
24 </article>
25 </main>
26
27 {{template "_includes.html"}}
28
29 </body>
30
31</html> \ No newline at end of file