about summary refs log tree commit diff stats
path: root/templates/header.html
diff options
context:
space:
mode:
authorAlan Pearce2023-04-26 09:08:15 +0200
committerAlan Pearce2023-04-26 09:08:15 +0200
commitcdd10696fcbc40078f721f252a8283e40e064f73 (patch)
tree57af6ba2835dc85e4baf512c4f0c9004eaf09654 /templates/header.html
parenta803508850bb890de5caabda9bbc1552666da6f2 (diff)
downloadzola-bearblog-cdd10696fcbc40078f721f252a8283e40e064f73.tar.lz
zola-bearblog-cdd10696fcbc40078f721f252a8283e40e064f73.tar.zst
zola-bearblog-cdd10696fcbc40078f721f252a8283e40e064f73.zip
Move header/footer/main elements into child templates
The <content> tag is not meant for normal HTML, but rather the Shadow
DOM, therefore I replaced it with <main>

For consistency's sake I moved <header> and <footer> into the child
templates as well
Diffstat (limited to 'templates/header.html')
-rw-r--r--templates/header.html10
1 files changed, 6 insertions, 4 deletions
diff --git a/templates/header.html b/templates/header.html
index 64c79f0..db5b921 100644
--- a/templates/header.html
+++ b/templates/header.html
@@ -1,4 +1,6 @@
-<a href="{{ config.base_url }}" class="title">
-  <h2>{{ config.title }}</h2>
-</a>
-<nav>{% include "nav.html" %}</nav>
+<header>
+  <a href="{{ config.base_url }}" class="title">
+    <h2>{{ config.title }}</h2>
+  </a>
+  <nav>{% include "nav.html" %}</nav>
+</header>