From 4c917fc60d4dec2151c83237cacecf604c0a9242 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 6 May 2015 06:44:18 +0300 Subject: initial commit --- _layouts/about.html | 7 +++++++ _layouts/post.html | 14 ++++++++++++++ _layouts/posts.html | 10 ++++++++++ 3 files changed, 31 insertions(+) create mode 100644 _layouts/about.html create mode 100644 _layouts/post.html create mode 100644 _layouts/posts.html (limited to '_layouts') diff --git a/_layouts/about.html b/_layouts/about.html new file mode 100644 index 0000000..9a6a620 --- /dev/null +++ b/_layouts/about.html @@ -0,0 +1,7 @@ +{% include header.html %} +
+
+ {{ content }} +
+
+{% include footer.html %} diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..4b05318 --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,14 @@ +{% include header.html %} +
+
+

{{ page.title }}

+

Posted on {{ page.date | date_to_long_string }}

+ {{ content }} +
+ {% include comments.html %} +
+
+ {% include sidebar.html %} +
+
+{% include footer.html %} diff --git a/_layouts/posts.html b/_layouts/posts.html new file mode 100644 index 0000000..920cbd9 --- /dev/null +++ b/_layouts/posts.html @@ -0,0 +1,10 @@ +{% include header.html %} +
+
+ {{ content }} +
+
+ {% include sidebar.html %} +
+
+{% include footer.html %} -- cgit v1.2.3