aboutsummaryrefslogtreecommitdiff
path: root/site/jekyll/_layouts
diff options
context:
space:
mode:
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