about summary refs log tree commit diff stats
path: root/templates/footer.html
diff options
context:
space:
mode:
authorAlan Pearce2023-04-26 09:08:15 +0200
committerAlan Pearce2023-04-26 09:19:20 +0200
commit402d85094185554d6150d6dfd6e76683abf7b663 (patch)
tree2834c26b32cf34e809506c51e6f6ab53e7dc3c9b /templates/footer.html
parenta803508850bb890de5caabda9bbc1552666da6f2 (diff)
downloadzola-bearblog-402d85094185554d6150d6dfd6e76683abf7b663.tar.lz
zola-bearblog-402d85094185554d6150d6dfd6e76683abf7b663.tar.zst
zola-bearblog-402d85094185554d6150d6dfd6e76683abf7b663.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/footer.html')
-rw-r--r--templates/footer.html8
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/footer.html b/templates/footer.html
index d0db8c7..97b096b 100644
--- a/templates/footer.html
+++ b/templates/footer.html
@@ -1,3 +1,5 @@
-{% if not config.extra.hide_made_with_line %}
-  Made with <a href="https://codeberg.org/alanpearce/zola-bearblog">Zola ʕ•ᴥ•ʔ Bear</a>
-{% endif %}
+<footer>
+  {% if not config.extra.hide_made_with_line %}
+    Made with <a href="https://codeberg.org/alanpearce/zola-bearblog">Zola ʕ•ᴥ•ʔ Bear</a>
+  {% endif %}
+</footer>