diff options
-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 +--- |