diff options
Diffstat (limited to 'docs/_templates/layout.html')
| -rw-r--r-- | docs/_templates/layout.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/_templates/layout.html b/docs/_templates/layout.html new file mode 100644 index 0000000..cdc7c50 --- /dev/null +++ b/docs/_templates/layout.html @@ -0,0 +1,19 @@ +{% extends "!layout.html" %} + +{% block extrahead %} +{{ super() }} +<link rel="stylesheet" type="text/css" + href="{{ pathto('_static/paste.css') }}"> +{% endblock %} + +{% block sidebartoc %} +<h3><a href="http://pythonpaste.org/" class="invisible-link">Python Paste</a></h3> + +<ul> +<li><a href="http://trac.pythonpaste.org">Issue tracker</a></li> +<li><a href="http://pythonpaste.org/deploy/">paste.deploy</a></li> +<li><a href="http://pythonpaste.org/script/">paste.script</a></li> +</ul> + +{{ super() }} +{% endblock %} |
