summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorianb <ianb@localhost>2008-06-13 16:24:41 +0000
committerianb <ianb@localhost>2008-06-13 16:24:41 +0000
commit5cc6e456edcdc1a601346949114a3da2dce8260c (patch)
tree64c05420a6c676ff51459400aba5d8b057a5f0b3
parent2047e407eca37dd1597de2333d11bfb3ed23c755 (diff)
downloadpastedeploy-git-5cc6e456edcdc1a601346949114a3da2dce8260c.tar.gz
Added template for site links1.3.2
-rw-r--r--docs/_static/paste.css15
-rw-r--r--docs/_templates/layout.html20
2 files changed, 35 insertions, 0 deletions
diff --git a/docs/_static/paste.css b/docs/_static/paste.css
new file mode 100644
index 0000000..6705e5d
--- /dev/null
+++ b/docs/_static/paste.css
@@ -0,0 +1,15 @@
+a.invisible-link {
+ color: #fff;
+ text-decoration: none;
+}
+
+a.invisible-link:visited {
+ color: #fff;
+ text-decoration: none;
+}
+
+a.invisible:link {
+ color: #fff;
+ text-decoration: none;
+}
+
diff --git a/docs/_templates/layout.html b/docs/_templates/layout.html
new file mode 100644
index 0000000..a6d2a97
--- /dev/null
+++ b/docs/_templates/layout.html
@@ -0,0 +1,20 @@
+{% 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/">Paste core</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 %}