microblog2/app/templates/404.html

7 lines
182 B
HTML

<!-- extend base layout -->
{% extends "base.html" %}
{% block content %}
<h1>{{ _('File Not Found') }}</h1>
<p><a href="{{url_for('index')}}">{{ _('Back') }}</a></p>
{% endblock %}