404.html 280 B

123456789101112
  1. {% extends "wagtailcrx/pages/web_page.html" %}
  2. {% block title %}Page not found{% endblock %}
  3. {% block body_class %}404{% endblock %}
  4. {% block content %}
  5. <div class="container">
  6. <h1>Page not found</h1>
  7. <h2>Sorry, this page could not be found.</h2>
  8. </div>
  9. {% endblock %}