9 lines
257 B
HTML
9 lines
257 B
HTML
|
{% extends "main.html" %}
|
||
|
|
||
|
<!-- Content -->
|
||
|
{% block content %}
|
||
|
<h1>404 - Not found</h1>
|
||
|
<br />
|
||
|
<p>You will be redirected to the main <a href="/">home page</a> automatically shortly.</p>
|
||
|
<meta http-equiv="refresh" content="5;url=/" />
|
||
|
{% endblock %}
|