website/templates/404.html

12 lines
234 B
HTML
Raw Normal View History

2022-06-09 08:36:29 +01:00
{% extends "base.html" %}
{% block title %}Page not found{% endblock %}
{% block body_class %}template-404{% endblock %}
{% block content %}
2022-08-03 20:22:02 +01:00
<h1>Page not found</h1>
2022-06-09 08:36:29 +01:00
2022-08-03 20:22:02 +01:00
<h2>Sorry, this page could not be found.</h2>
2022-06-09 08:36:29 +01:00
{% endblock %}