summaryrefslogtreecommitdiffstats
path: root/blog/_layouts
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2015-08-03 20:56:07 +0200
committerHarald Eilertsen <haraldei@anduin.net>2015-08-03 21:04:20 +0200
commit9423e41ae92ea3717358f3e947ad0bd7f732e733 (patch)
treede3c7cfe312cdb6021e40916c8c7cd1ab4197fd2 /blog/_layouts
parent6e3ea4801b21f7a79135349e59bb8a9f9c5f61e0 (diff)
downloadnorsk-urskog-main-9423e41ae92ea3717358f3e947ad0bd7f732e733.tar.gz
norsk-urskog-main-9423e41ae92ea3717358f3e947ad0bd7f732e733.tar.bz2
norsk-urskog-main-9423e41ae92ea3717358f3e947ad0bd7f732e733.zip
Add default layout.
Diffstat (limited to 'blog/_layouts')
-rw-r--r--blog/_layouts/default.html21
-rw-r--r--blog/_layouts/homepage.html20
2 files changed, 24 insertions, 17 deletions
diff --git a/blog/_layouts/default.html b/blog/_layouts/default.html
new file mode 100644
index 0000000..84f0575
--- /dev/null
+++ b/blog/_layouts/default.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html>
+ {% include head.html %}
+ <body>
+ <div id="page-container">
+ {% include header.html %}
+
+ <section id="page">
+ <section id="body-content">
+ <section id="body">
+ <div class="inner">
+ {{ content }}
+ </div>
+ </section>
+ </section>
+ </section>
+
+ {% include footer.html %}
+ </div>
+ </body>
+</html>
diff --git a/blog/_layouts/homepage.html b/blog/_layouts/homepage.html
index d252872..0d6905d 100644
--- a/blog/_layouts/homepage.html
+++ b/blog/_layouts/homepage.html
@@ -1,17 +1,3 @@
-<!DOCTYPE html>
-<html>
- {% include head.html %}
- <body>
-
- {% include header.html %}
-
- <div class="page-content">
- <div class="wrapper">
- {{ content }}
- </div>
- </div>
-
- {% include footer.html %}
-
- </body>
-</html>
+---
+layout: default
+---