From 1875608804de0dccb6dced1b51f9efa8fb5d93d4 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Mon, 6 Aug 2018 05:11:34 +0200 Subject: jekyll --- _layouts/index.html | 34 ++++++++++++++++++++++++++++++++++ _layouts/page.html | 25 +++++++++++++++++++++++++ _layouts/post.html | 25 +++++++++++++++++++++++++ 3 files changed, 84 insertions(+) create mode 100644 _layouts/index.html create mode 100644 _layouts/page.html create mode 100644 _layouts/post.html (limited to '_layouts') diff --git a/_layouts/index.html b/_layouts/index.html new file mode 100644 index 0000000..872cd2e --- /dev/null +++ b/_layouts/index.html @@ -0,0 +1,34 @@ + + + + + + + + {{ page.title }} + + + + + + + + {% include header.html %} + +
+ + +
+ + {% include footer.html %} + + + + diff --git a/_layouts/page.html b/_layouts/page.html new file mode 100644 index 0000000..b3d2fc4 --- /dev/null +++ b/_layouts/page.html @@ -0,0 +1,25 @@ + + + + + + + + {{ page.title }} + + + + + {% include header.html %} + +

page

+ +
+ {{ content }} +
+ + {% include footer.html %} + + + + diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..a6936cf --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,25 @@ + + + + + + + + {{ page.title }} + + + + + {% include header.html %} + +

post

+ +
+ {{ content }} +
+ + {% include footer.html %} + + + + -- cgit v1.2.3