blob: c4e2fa305cc2635f2f9158c49e95f3bebe9d895f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends "base.html" %}
{% block title %}
Server Error
{% endblock title %}
{% block content %}
<h1>Ooops!!! 500</h1>
<h3>Looks like something went wrong!</h3>
<p>
We track these errors automatically, but if the problem persists feel free to contact us. In the meantime, try refreshing.
</p>
{% endblock content %}
|