From 8a4d108661a796238a0992db8fc467febf1d522c Mon Sep 17 00:00:00 2001 From: Jesper Hess Nielsen Date: Wed, 6 Apr 2016 13:01:28 +0200 Subject: [PATCH] Strip down layout to most basic version --- _layouts/default.html | 25 ++++++++++--------------- _layouts/page.html | 13 +++---------- _layouts/post.html | 13 +++---------- 3 files changed, 16 insertions(+), 35 deletions(-) diff --git a/_layouts/default.html b/_layouts/default.html index e4ab96f..2406af3 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,20 +1,15 @@ +{% include head.html %} - {% include head.html %} - - - - {% include header.html %} - -
-
- {{ content }} -
-
- + + {% include header.html %} +
+
+ {{ content }} +
{% include footer.html %} +
+ - - - + \ No newline at end of file diff --git a/_layouts/page.html b/_layouts/page.html index ce233ad..fff3b5b 100644 --- a/_layouts/page.html +++ b/_layouts/page.html @@ -1,14 +1,7 @@ --- layout: default --- -
-
-

{{ page.title }}

-
- -
- {{ content }} -
- -
+

{{ page.title }}

+ + {{ content }} \ No newline at end of file diff --git a/_layouts/post.html b/_layouts/post.html index 3a0fb52..1417320 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,15 +1,8 @@ --- layout: default --- -
-
-

{{ page.title }}

- -
+

{{ page.title }}

+ -
- {{ content }} -
- -
+{{ content }} \ No newline at end of file