mirror of https://github.com/CIRCL/url-abuse
9 lines
239 B
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 %}
|
||
|
|