gaisen/templates/error.html

10 lines
183 B
HTML

{% extends 'base.html' %}
{% block title %}Error {{ code }}{% endblock %}
{% block body %}
<h1>Error {{ code }}</h1>
<p>{{ msg }}</p>
<a href="/">Return to Index</a>
{% endblock %}