gaisen/templates/error.html

10 lines
183 B
HTML
Raw Permalink Normal View History

2024-02-24 05:46:16 +00:00
{% extends 'base.html' %}
{% block title %}Error {{ code }}{% endblock %}
{% block body %}
<h1>Error {{ code }}</h1>
<p>{{ msg }}</p>
<a href="/">Return to Index</a>
{% endblock %}