add custom 404 page

This commit is contained in:
2025-12-03 06:37:57 +03:00
parent 24fe0aba30
commit 7c037d1593
2 changed files with 10 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
{% 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 %}