microblog2/app/templates/404.html

8 lines
193 B
HTML
Raw Normal View History

2012-12-16 08:32:38 +00:00
<!-- extend base layout -->
{% extends "base.html" %}
{% block content %}
<h1>{{ _('File Not Found') }}</h1>
<p><a href="{{ url_for('index') }}">{{ _('Back') }}</a></p>
{% endblock %}