abgame/templates/404.html

17 lines
481 B
HTML
Raw Permalink Normal View History

2023-06-04 12:18:28 +02:00
{% extends 'base.html' %}
{% block main %}
<div class="ab">
2023-06-04 12:32:46 +02:00
<div class="a">
2023-06-04 14:35:24 +02:00
<h1>404 - Page not found</h1>
2023-06-04 12:32:46 +02:00
<p>Sorry, the page you requested does not exists.</p>
<p>[<a href="/">Home</a>]</p>
</div>
2023-06-04 12:18:28 +02:00
</div>
<div id="footer">
2023-06-04 15:04:33 +02:00
<div class="box">&nbsp;</div>
2023-06-04 12:18:28 +02:00
{% include 'toggle.html' %}
2023-06-04 15:04:33 +02:00
<div class="box">&nbsp;</div>
2023-06-04 12:18:28 +02:00
</div>
{% endblock %}