From c389f93bdce02f446ce22dec7e93cbe7a00b472c Mon Sep 17 00:00:00 2001 From: Jakob Odersky Date: Thu, 9 Apr 2015 02:09:35 +0200 Subject: implement basic site using jekyll --- _layouts/empty.html | 4 ++++ _layouts/page.html | 4 ++++ _layouts/post.html | 4 ++++ 3 files changed, 12 insertions(+) create mode 100644 _layouts/empty.html create mode 100644 _layouts/page.html create mode 100644 _layouts/post.html (limited to '_layouts') diff --git a/_layouts/empty.html b/_layouts/empty.html new file mode 100644 index 0000000..baf32d7 --- /dev/null +++ b/_layouts/empty.html @@ -0,0 +1,4 @@ +{% capture content %} +{{ content }} +{% endcapture %} +{% include main.html %} \ No newline at end of file diff --git a/_layouts/page.html b/_layouts/page.html new file mode 100644 index 0000000..4cae8bb --- /dev/null +++ b/_layouts/page.html @@ -0,0 +1,4 @@ +{% capture content %} +{{ content }} +{% endcapture %} +{% include header.html %} \ No newline at end of file diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..4cae8bb --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,4 @@ +{% capture content %} +{{ content }} +{% endcapture %} +{% include header.html %} \ No newline at end of file -- cgit v1.2.3