staxman-old/templates/error.html

10 lines
178 B
HTML
Raw Permalink Normal View History

2023-11-18 15:35:30 +00:00
{% extends "base.html" %}
{% block title %}Error{% endblock %}
{% block content %}
<main class="error-page">
2023-11-18 19:51:10 +00:00
<h1>{{ status }}</h1>
2023-11-18 15:35:30 +00:00
<p>{{ message }}</p>
</main>
2023-11-18 19:51:10 +00:00
{% endblock %}