summaryrefslogtreecommitdiff
path: root/source/_layouts/default.html
diff options
context:
space:
mode:
authorPrefetch2023-03-03 14:09:23 +0100
committerPrefetch2023-03-03 14:09:23 +0100
commit7edaa33d1b9aef05fedc82375ca010461c009edf (patch)
treec60710ce64920a1cdd8d0cfa387d6f479868928a /source/_layouts/default.html
parent52ff45a7c687d502492be0fa6e54f9b99d501465 (diff)
Mobile-friendly header redesign, CSS improvements
Diffstat (limited to 'source/_layouts/default.html')
-rw-r--r--source/_layouts/default.html26
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>