redsunlib/templates/error.html

9 lines
234 B
HTML
Raw Permalink Normal View History

2020-11-23 13:29:05 +13:00
{% extends "base.html" %}
2021-01-15 06:53:54 +13:00
{% block title %}Error: {{ msg }}{% endblock %}
2020-11-23 13:29:05 +13:00
{% block sortstyle %}{% endblock %}
{% block content %}
2021-02-22 07:11:17 +13:00
<div id="error">
<h1>{{ msg }}</h1>
<h3>Head back <a href="/">home</a>?</h3>
</div>
2020-11-23 13:29:05 +13:00
{% endblock %}