redsunlib/templates/error.html
2021-02-21 10:11:17 -08:00

9 lines
234 B
HTML

{% extends "base.html" %}
{% block title %}Error: {{ msg }}{% endblock %}
{% block sortstyle %}{% endblock %}
{% block content %}
<div id="error">
<h1>{{ msg }}</h1>
<h3>Head back <a href="/">home</a>?</h3>
</div>
{% endblock %}