From bda7c0b0beef574b738130b3561a9e8ba78f67ba Mon Sep 17 00:00:00 2001 From: Ivan Topolnjak Date: Sun, 24 Nov 2013 22:55:50 -0300 Subject: base scheleton for the site --- site/src/jekyll/_layouts/default.html | 35 +++++++++++++++++++++++++++++++++++ site/src/jekyll/_layouts/post.html | 9 +++++++++ 2 files changed, 44 insertions(+) create mode 100644 site/src/jekyll/_layouts/default.html create mode 100644 site/src/jekyll/_layouts/post.html (limited to 'site/src/jekyll/_layouts') diff --git a/site/src/jekyll/_layouts/default.html b/site/src/jekyll/_layouts/default.html new file mode 100644 index 00000000..217b4a42 --- /dev/null +++ b/site/src/jekyll/_layouts/default.html @@ -0,0 +1,35 @@ + + + + {{ page.title }} + + + + + + + + + + {% include navigation-bar.html %} +
+
+ {{ content }} +
+
+
+ + + + + + + + + + diff --git a/site/src/jekyll/_layouts/post.html b/site/src/jekyll/_layouts/post.html new file mode 100644 index 00000000..6ffedaab --- /dev/null +++ b/site/src/jekyll/_layouts/post.html @@ -0,0 +1,9 @@ +--- +layout: default +--- +

{{ page.title }}

+

{{ page.date | date_to_string }}

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