microblog2/app/templates/404.html

7 lines
164 B
HTML

{% extends "base.html" %}
{% block app_content %}
<h1>{{ _('Not Found') }}</h1>
<p><a href="{{ url_for('index') }}">{{ _('Back') }}</a></p>
{% endblock %}