libreddit/templates/error.html

6 lines
209 B
HTML
Raw Normal View History

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