diff options
Diffstat (limited to 'source/_layouts/default.html')
-rw-r--r-- | source/_layouts/default.html | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/source/_layouts/default.html b/source/_layouts/default.html index 66a70a2..1d02557 100644 --- a/source/_layouts/default.html +++ b/source/_layouts/default.html @@ -1,12 +1,20 @@ <!DOCTYPE html> <html> -<head> -{% include preamble.html %} -<title>{{ page.title | replace: "<br>", " " }} | {{ site.title }}</title> -</head> -<body> -{% include navigation.html %} -{{ content }} -{% include footer.html %} -</body> + <head> + {% include preamble.html %} + <title>{{ page.title | replace: "<br>", " " }} | {{ site.title }}</title> + </head> + <body> + <div id="header" class="no-hl-a"> + {% include header.html %} + </div> + <div id="article"> + <hr> + {{ content }} + <hr> + </div> + <div id="footer" class="no-hl-a"> + {% include footer.html %} + </div> + </body> </html> |