all repos — homestead @ f8e3f6790509d33d34ed8fc89c79004dd1c331ef

Code for my website

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

Alan Pearce
commit

f8e3f6790509d33d34ed8fc89c79004dd1c331ef

parent

b95136c7d0647c1544ab9ff0408dfe2c9ac06845

1 file changed, 5 insertions(+), 3 deletions(-)

changed files
M templates/footer.htmltemplates/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>