mirror of
https://github.com/miguelgrinberg/microblog.git
synced 2026-02-01 14:37:05 +00:00
8 lines
276 B
HTML
8 lines
276 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h1>{{ _('An unexpected error has occurred') }}</h1>
|
|
<p>{{ _('The administrator has been notified. Sorry for the inconvenience!') }}</p>
|
|
<p><a href="{{ url_for('main.index') }}">{{ _('Back') }}</a></p>
|
|
{% endblock %}
|