jessite/themes/terminette/templates/404.html
Jessica Canady 89b73b5413
Just add the theme straight to this repo.
It can be open-sourced in a way better way than having to edit it, push,
then clone. That workflow is just *ugh.*
2024-04-16 13:38:58 -04:00

17 lines
427 B
HTML

{% extends "index.html" %}
{% block title %}
404 | {{ config.title }}
{% endblock title %}
{% block header_menu %}
{{ menu_macros::menu_for(config=config, current_item="") }}
{% endblock header_menu %}
{% block content %}
<div class="post">
<h1 class="post-title">{% block heading %}Lost?{% endblock heading %}</h1>
<p>{% block message %}This page does not exist.{% endblock message %}</p>
</div>
{% endblock content %}