summaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
authorJosé Mota <josemota.net@gmail.com>2012-04-06 19:40:49 +0100
committerJosé Mota <josemota.net@gmail.com>2012-04-06 19:40:49 +0100
commit362613f46f6893a5cecea8b5d3ed6d561b679136 (patch)
treed434fbb2290f8408a24638f34f594605025015b3 /_layouts
parent3204575bfcd1f12db5945c8959073d40915cfdfe (diff)
First draft of post layout.
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/post.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
new file mode 100644
index 0000000..9fa7025
--- /dev/null
+++ b/_layouts/post.html
@@ -0,0 +1,16 @@
+<!DOCTYPE HTML>
+<html>
+ <head>
+ <meta charset="utf-8"/>
+ <title>{{page.title}}</title>
+ <link rel="stylesheet" href="/css/main.css" />
+ </head>
+
+ <body>
+ <div id="bucket">
+ <h1>{{page.title}}</h1>
+
+ {{content}}
+ </div>
+ </body>
+</html>