From 042ebd011194592ec155181dc41976493a07e54a Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Wed, 30 Apr 2014 18:58:50 -0400 Subject: Use Jekyll --- _layouts/default.html | 44 ++++++++++++++++++++++++++++++++++++++++++++ _layouts/post.html | 9 +++++++++ 2 files changed, 53 insertions(+) create mode 100644 _layouts/default.html create mode 100644 _layouts/post.html (limited to '_layouts') diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..22e7e3f --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,44 @@ + + + + + + {{ page.title }} + + + + + + + + + + + +
+ + + {{ content }} + + +
+ + + diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..04e3586 --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,9 @@ +--- +layout: default +--- +

{{ page.title }}

+

{{ page.date | date_to_string }}

+ +
+{{ content }} +
-- cgit v1.2.3