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