microblog/app/templates/errors/404.html

7 lines
169 B
HTML

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