redsunlib/templates/error.html

6 lines
209 B
HTML
Raw 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-01-15 06:53:54 +13:00
<h1 style="text-align: center; font-size: 50px;">{{ msg }}</h1>
2020-11-23 13:29:05 +13:00
{% endblock %}