Files
sunday/templates/404.html
2025-11-06 21:18:44 +10:00

10 lines
260 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="error-page">
<h1>404</h1>
<h2>Page Not Found</h2>
<p>Sorry, the page you're looking for doesn't exist.</p>
<a href="{{ url_for('index') }}" class="btn">Go Home</a>
</div>
{% endblock %}