microblog/app/templates/500.html

8 lines
242 B
HTML
Raw Normal View History

2017-09-15 07:03:20 +00:00
{% extends "base.html" %}
2017-09-27 06:43:28 +00:00
{% block app_content %}
2017-09-15 07:03:20 +00:00
<h1>An unexpected error has occurred</h1>
<p>The administrator has been notified. Sorry for the inconvenience!</p>
<p><a href="{{ url_for('index') }}">Back</a></p>
{% endblock %}