url-abuse/web/templates/404.html

9 lines
239 B
HTML
Raw Normal View History

2015-03-02 14:55:34 +01:00
{% extends "index.html" %}
{% block title %}Page Not Found{% endblock %}
{% block body %}
<h1>Page Not Found</h1>
<p>What you were looking for is just not there.
<p><a href="{{ url_for('index') }}">Back to index.</a>
{% endblock %}