Files
twitch-drop-notifier/core/templates/404.html
Joakim Hellsén abab9b359f
All checks were successful
Ruff / ruff (push) Successful in 10s
Add custom 404 and 500 error handlers with corresponding templates
2025-05-02 04:28:03 +02:00

15 lines
506 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="row justify-content-center">
<div class="col-md-8 text-center">
<div class="alert-danger mt-5">
<h1 class="display-1">404</h1>
<h2>Page Not Found</h2>
<p class="lead">The page you're looking for doesn't exist or has been moved.</p>
<p>Check the URL or return to the <a href="{% url 'index' %}" class="alert-link">homepage</a>.</p>
</div>
</div>
</div>
{% endblock content %}