13 lines
368 B
HTML
13 lines
368 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>
|
|
It seems like the thing you are looking for does not exist or <code>rm -rf</code> itself out of exsistance.
|
|
</p>
|
|
</section>
|
|
{% endblock %} |