url-abuse/web/templates/404.html

9 lines
239 B
HTML

{% 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 %}