1 {% extends "base.html" %}
2
3 {% block title %}404 Page Not Found{% endblock %}
4
5 {% block content %}
6
7 <h1>404 Page Not Found</h1>
8
9 <p>Are you sure you have the correct URL?</p>
10
11 {% endblock content %}