404.html 563 B

1234567891011121314151617
  1. {% extends "layout.html" %}
  2. {% set title = 'Page not found' %}
  3. {% block body %}
  4. <h1>404: Page not found</h1>
  5. <p>The page you are requesting cannot be found. Please try one of the following
  6. pages instead:</p>
  7. <ul>
  8. <li><a href="{{ pathto("index") }}">Home page</a></li>
  9. <li><a href="{{ pathto("topics/community") }}">Community</a></li>
  10. <li><a href="{{ pathto("search") }}">Search</a></li>
  11. <li><a href="{{ pathto("py-modindex") }}">Salt module index</a></li>
  12. <li><a href="{{ pathto("home") }}">Salt Documentation</a></li>
  13. </ul>
  14. {% endblock %}