redsunlib/templates/error.html

11 lines
312 B
HTML
Raw Normal View History

2020-11-22 16:29:05 -08:00
{% extends "base.html" %}
2021-01-14 09:53:54 -08:00
{% block title %}Error: {{ msg }}{% endblock %}
2020-11-22 16:29:05 -08:00
{% block sortstyle %}{% endblock %}
{% block content %}
2021-02-21 10:11:17 -08:00
<div id="error">
<h1>{{ msg }}</h1>
2023-03-14 22:21:41 +01:00
<h3><a href="https://www.redditstatus.com/">Reddit Status</a></h3>
2023-12-26 15:18:29 -05:00
<br />
2021-02-21 10:11:17 -08:00
<h3>Head back <a href="/">home</a>?</h3>
</div>
2020-11-22 16:29:05 -08:00
{% endblock %}