diff --git a/config/settings.py b/config/settings.py index b112427..186fd4d 100644 --- a/config/settings.py +++ b/config/settings.py @@ -103,7 +103,7 @@ MEDIA_URL = "/media/" STATIC_ROOT: Path = DATA_DIR / "staticfiles" STATIC_ROOT.mkdir(exist_ok=True) -STATIC_URL = "static/" +STATIC_URL = "/static/" STATICFILES_DIRS: list[Path] = [BASE_DIR / "static"] TIME_ZONE = "UTC" diff --git a/static/404.svg b/static/404.svg new file mode 100644 index 0000000..1e7b98d --- /dev/null +++ b/static/404.svg @@ -0,0 +1,8 @@ + + + + + :( + 404 + + diff --git a/templates/base.html b/templates/base.html index 574a7d0..d3d4e88 100644 --- a/templates/base.html +++ b/templates/base.html @@ -23,6 +23,43 @@ {% endblock title %} {% include "includes/meta_tags.html" %} + + + + + + + + + + + {# Allow child templates to inject page-specific alternates into the head #} + {% block extra_head %} + {% endblock extra_head %}