mirror of
https://github.com/valitydev/salt.git
synced 2024-11-06 16:45:27 +00:00
18 lines
563 B
HTML
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 %}
|