Update page templating to centralize header and metatada, add 404 page

This commit is contained in:
Froge 2025-07-23 09:52:56 +10:00
parent 16941f6074
commit c0d63ab5f3
Signed by: froge
GPG key ID: A825E09930271BFA
4 changed files with 40 additions and 47 deletions

11
templates/404.html Normal file
View file

@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block content %}
<main id="main-content">
<div id="welcome-message">
<h2 id="blog-page-title">|| 404 Not Found ||</h2>
<h6 class="blog-post-date">These are not the frogs you're looking for 👋 🐸</h6>
</div>
<div class="dotted-border"></div>
</main>
{% endblock content %}