404.html 643 B

1234567891011121314151617181920212223242526
  1. {% extends "misago/base.html" %}
  2. {% load i18n %}
  3. {% block title %}{% trans "Page not found" %} | {{ block.super }}{% endblock %}
  4. {% block meta_description %}{% trans "The link you clicked was incorrect or the page has been moved or deleted." %}{% endblock meta_description %}
  5. {% block content %}
  6. <div class="container">
  7. <div class="error-message">
  8. <div class="error-icon">
  9. <span class="fa fa-compass"></span>
  10. </div>
  11. <h1>{% trans "Requested page could not be found." %}</h1>
  12. <p>{% trans "The link you clicked was incorrect or the page has been moved or deleted." %}</p>
  13. </div>
  14. </div>
  15. {% endblock content %}