9 lines
204 B
HTML
9 lines
204 B
HTML
{% extends 'base.html' %}
|
|
{% block title %}not found{% endblock %}
|
|
{% block content %}
|
|
<div class="darkbg">
|
|
<h1>404 Not Found</h1>
|
|
<p>The requested URL does not exist.</p>
|
|
</div>
|
|
{% endblock %}
|