2017-02-09 12:20:21 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}404 - Page not found{% endblock %}
|
|
|
|
|
2023-10-02 13:21:37 +00:00
|
|
|
{% block search_description %}Sorry, this page could not be found{% endblock %}
|
|
|
|
|
2017-02-09 12:20:21 +00:00
|
|
|
{% block body_class %}template-404{% endblock %}
|
|
|
|
|
2017-02-19 20:35:46 +00:00
|
|
|
{% block content %}
|
2017-02-09 12:20:21 +00:00
|
|
|
<h1>Page not found</h1>
|
|
|
|
|
|
|
|
<h2>Sorry, this page could not be found.</h2>
|
2017-02-19 20:35:46 +00:00
|
|
|
{% endblock content %}
|