14 lines
331 B
HTML
14 lines
331 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Server Error{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Error</h1>
|
|
|
|
<h3>Sorry about that, it 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 %}
|