Make 404 content configurable

This commit is contained in:
Ivan Petkov 2021-12-08 09:41:07 -08:00
parent b04b1f5951
commit 5cd633f92b
No known key found for this signature in database
GPG key ID: BB6F9EFC065832B6

View file

@ -10,7 +10,7 @@
{% block content %} {% block content %}
<div class="post"> <div class="post">
<h1 class="post-title">Lost?</h1> <h1 class="post-title">{% block heading %}Lost?{% endblock heading %}</h1>
<p>This page does not exist.</p> <p>{% block message %}This page does not exist.{% endblock message %}</p>
</div> </div>
{% endblock content %} {% endblock content %}