diff options
Diffstat (limited to 'blog/_layouts/default.html')
-rw-r--r-- | blog/_layouts/default.html | 21 |
1 files changed, 21 insertions, 0 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> |