structables/templates/404.html

13 lines
306 B
HTML
Raw Normal View History

{% extends "base.html" %}
2023-06-01 21:25:13 +00:00
{% block content %}
2023-06-01 21:25:13 +00:00
<center>
<h1>404</h1>
2023-06-01 21:25:13 +00:00
<p>This resource cannot be found</p>
<br>
<p>Why don't you try one of these instead?</p>
<a href="/" class="go_here_link">Featured</a>
<a href="/contest" class="go_here_link">Contests</a>
<br><br>
</center>
{% endblock %}