diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2015-08-03 20:56:07 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2015-08-03 21:04:20 +0200 |
commit | 9423e41ae92ea3717358f3e947ad0bd7f732e733 (patch) | |
tree | de3c7cfe312cdb6021e40916c8c7cd1ab4197fd2 | |
parent | 6e3ea4801b21f7a79135349e59bb8a9f9c5f61e0 (diff) | |
download | norsk-urskog-main-9423e41ae92ea3717358f3e947ad0bd7f732e733.tar.gz norsk-urskog-main-9423e41ae92ea3717358f3e947ad0bd7f732e733.tar.bz2 norsk-urskog-main-9423e41ae92ea3717358f3e947ad0bd7f732e733.zip |
Add default layout.
-rw-r--r-- | blog/_layouts/default.html | 21 | ||||
-rw-r--r-- | blog/_layouts/homepage.html | 20 |
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 +--- |