microblog/app/templates/500.html

8 lines
275 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-30 07:21:17 +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>
2017-09-15 07:03:20 +00:00
{% endblock %}