This commit is contained in:
Parker TenBroeck 2026-01-16 22:02:02 -05:00
commit 6449151d7a
38 changed files with 779 additions and 0 deletions

17
templates/404.html Normal file
View file

@ -0,0 +1,17 @@
{% extends "base.html" %}
{%- block title -%}Page not found{%- endblock -%}
{%- block robots -%}
<meta name="robots" content="noindex, follow">
{%- endblock -%}
{%- block main -%}
{%- filter indent -%}{%- filter indent -%}
<section class="framed">
<h2>Page not found...</h2>
<p>Sorry, this page doesn't exist. Go back <a href="{{ config.base_url | safe }}">home</a>?</p>
</section>
{%- endfilter -%}{%- endfilter -%}
{%- endblock -%}