libreddit/templates/error.html

6 lines
209 B
HTML
Raw Normal View History

2020-11-23 00:29:05 +00:00
{% extends "base.html" %}
2021-01-14 17:53:54 +00:00
{% block title %}Error: {{ msg }}{% endblock %}
2020-11-23 00:29:05 +00:00
{% block sortstyle %}{% endblock %}
{% block content %}
2021-01-14 17:53:54 +00:00
<h1 style="text-align: center; font-size: 50px;">{{ msg }}</h1>
2020-11-23 00:29:05 +00:00
{% endblock %}