20 lines
542 B
HTML
20 lines
542 B
HTML
{% extends "bases/base.html" %}
|
|
|
|
{% block title %}404 - Not Found{% endblock %}
|
|
{% block description %}The page you are looking for does not exist.{% endblock %}
|
|
|
|
{% block content %}
|
|
<section>
|
|
<h1>404</h1>
|
|
<p>
|
|
Hey so you know that thing you were looking for? Yeah, it doesn't exist. :P
|
|
<br><br>
|
|
So why not try going back to the <a href="/">homepage</a>?
|
|
</p>
|
|
</section>
|
|
<section>
|
|
<h2>The actual error for the 2 ppl who care</h2>
|
|
<p>
|
|
404: {{ requested_url }} not found :3
|
|
</p>
|
|
</section> |