Files
alfieking.dev/templates/errors/404.html
2026-01-18 23:21:44 +00:00

13 lines
368 B
HTML

{% extends "bases/base.html" %}
{% block title %}404 - Not Found{% endblock %}
{% block description %}The page you are looking for does not exist.{% endblock %}
{% block content %}
<section>
<h1>404</h1>
<p>
It seems like the thing you are looking for does not exist or <code>rm -rf</code> itself out of exsistance.
</p>
</section>
{% endblock %}