aboutsummaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2015-04-09 02:09:35 +0200
committerJakob Odersky <jodersky@gmail.com>2015-04-09 21:38:43 +0200
commitc389f93bdce02f446ce22dec7e93cbe7a00b472c (patch)
treefb35194d21017e45ac9163dd6b981c78f566c100 /_layouts
parent5cb6b6a78bfeb92c01a1d91f134ac22978e64b09 (diff)
downloadwebsite-c389f93bdce02f446ce22dec7e93cbe7a00b472c.tar.gz
website-c389f93bdce02f446ce22dec7e93cbe7a00b472c.tar.bz2
website-c389f93bdce02f446ce22dec7e93cbe7a00b472c.zip
implement basic site using jekyll
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/empty.html4
-rw-r--r--_layouts/page.html4
-rw-r--r--_layouts/post.html4
3 files changed, 12 insertions, 0 deletions
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