aboutsummaryrefslogtreecommitdiff
path: root/site/jekyll/_layouts
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2015-12-12 11:44:39 -0800
committerJakob Odersky <jodersky@gmail.com>2015-12-16 21:55:45 -0800
commit7453888b0188a2aeff06b8e9893118b889f8d828 (patch)
tree8e6ef2498ff2aaeac7241f3df71200c422f0f1cb /site/jekyll/_layouts
parenteab2e148c7605ca0fd836bbe9230734895cce7d0 (diff)
downloadakka-serial-7453888b0188a2aeff06b8e9893118b889f8d828.tar.gz
akka-serial-7453888b0188a2aeff06b8e9893118b889f8d828.tar.bz2
akka-serial-7453888b0188a2aeff06b8e9893118b889f8d828.zip
create website
Diffstat (limited to 'site/jekyll/_layouts')
-rw-r--r--site/jekyll/_layouts/empty.html4
-rw-r--r--site/jekyll/_layouts/page-full.html4
-rw-r--r--site/jekyll/_layouts/page.html6
-rw-r--r--site/jekyll/_layouts/post.html4
4 files changed, 18 insertions, 0 deletions
diff --git a/site/jekyll/_layouts/empty.html b/site/jekyll/_layouts/empty.html
new file mode 100644
index 0000000..baf32d7
--- /dev/null
+++ b/site/jekyll/_layouts/empty.html
@@ -0,0 +1,4 @@
+{% capture content %}
+{{ content }}
+{% endcapture %}
+{% include main.html %} \ No newline at end of file
diff --git a/site/jekyll/_layouts/page-full.html b/site/jekyll/_layouts/page-full.html
new file mode 100644
index 0000000..38d0620
--- /dev/null
+++ b/site/jekyll/_layouts/page-full.html
@@ -0,0 +1,4 @@
+{% capture content %}
+{{ content }}
+{% endcapture %}
+{% include header.html %}
diff --git a/site/jekyll/_layouts/page.html b/site/jekyll/_layouts/page.html
new file mode 100644
index 0000000..5f9f137
--- /dev/null
+++ b/site/jekyll/_layouts/page.html
@@ -0,0 +1,6 @@
+{% capture content %}
+<div class="container">
+{{ content }}
+</div>
+{% endcapture %}
+{% include header.html %}
diff --git a/site/jekyll/_layouts/post.html b/site/jekyll/_layouts/post.html
new file mode 100644
index 0000000..4cae8bb
--- /dev/null
+++ b/site/jekyll/_layouts/post.html
@@ -0,0 +1,4 @@
+{% capture content %}
+{{ content }}
+{% endcapture %}
+{% include header.html %} \ No newline at end of file