summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorianb <devnull@localhost>2008-06-04 20:09:07 +0000
committerianb <devnull@localhost>2008-06-04 20:09:07 +0000
commitb62b181f34cf73d6a9cdd931cd9dfcb2883093fe (patch)
treeba7d86b2c0aeb7523fac1f662602b8bff04f8d2e
parent354d6922774bf16f8a00a30921af23ec75fc851c (diff)
downloadpaste-b62b181f34cf73d6a9cdd931cd9dfcb2883093fe.tar.gz
Added some custom links to the template
-rw-r--r--docs/_static/paste.css15
-rw-r--r--docs/_templates/layout.html19
2 files changed, 34 insertions, 0 deletions
diff --git a/docs/_static/paste.css b/docs/_static/paste.css
new file mode 100644
index 0000000..7769d47
--- /dev/null
+++ b/docs/_static/paste.css
@@ -0,0 +1,15 @@
+a.invisible-link:visited {
+ color: inherit;
+ text-decoration: none;
+}
+
+a.invisible-link:visited {
+ color: inherit;
+ text-decoration: none;
+}
+
+a.invisible:link {
+ color: inherit;
+ text-decoration: none;
+}
+
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 %}