2
0

404.html 333 B

12345678910111213
  1. {% extends "base.html" %}
  2. {% block title %}404 - Page not found{% endblock %}
  3. {% block search_description %}Sorry, this page could not be found{% endblock %}
  4. {% block body_class %}template-404{% endblock %}
  5. {% block content %}
  6. <h1>Page not found</h1>
  7. <h2>Sorry, this page could not be found.</h2>
  8. {% endblock content %}