From 4e11e6d5364a12650b9a139495bd5a73943ae56a Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 6 May 2015 06:17:59 +0300 Subject: initial commit --- _layouts/plots.html | 7 +++++++ _layouts/post.html | 14 ++++++++++++++ _layouts/posts.html | 10 ++++++++++ 3 files changed, 31 insertions(+) create mode 100644 _layouts/plots.html create mode 100644 _layouts/post.html create mode 100644 _layouts/posts.html (limited to '_layouts') diff --git a/_layouts/plots.html b/_layouts/plots.html new file mode 100644 index 0000000..9a6a620 --- /dev/null +++ b/_layouts/plots.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