redsunlib/templates/error.html

6 lines
209 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-01-14 09:53:54 -08:00
<h1 style="text-align: center; font-size: 50px;">{{ msg }}</h1>
2020-11-22 16:29:05 -08:00
{% endblock %}