salt/doc/_templates/404.html
2011-11-16 19:52:51 -07:00

18 lines
563 B
HTML

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