diff options
Diffstat (limited to 'blog/_layouts/homepage.html')
-rw-r--r-- | blog/_layouts/homepage.html | 28 |
1 files changed, 25 insertions, 3 deletions
diff --git a/blog/_layouts/homepage.html b/blog/_layouts/homepage.html index 0d6905d..a5e15a0 100644 --- a/blog/_layouts/homepage.html +++ b/blog/_layouts/homepage.html @@ -1,3 +1,25 @@ ---- -layout: default ---- +<!DOCTYPE html> +<html> + {% include head.html %} + <body> + <div id="page-container"> + {% include header.html %} + + <section id="page"> + <section id="body-content"> + {{ content }} + + {% include news.html %} + + {% if site.links %} + <section id="links"> + <h2>{% t home.links %}</h2> + </section> + {% endif %} + </section> + </section> + + {% include footer.html %} + </div> + </body> +</html> |