pages/templates/404.html
2025-10-25 10:41:47 +06:30

10 lines
254 B
HTML

{% extends "page.html" %}
{% block title %}{{ config.title }} | Page Not Found{% endblock title %}
{% block content %}
<main>
<h1>Page Not Found (404)</h1>
<p>The page you were looking for could not be found.</p>
</main>
{% endblock content %}