From bab3ec9972136f894626466f0f43b1908584b871 Mon Sep 17 00:00:00 2001 From: ianb Date: Fri, 13 Jun 2008 16:24:41 +0000 Subject: Added template for site links --- docs/_static/paste.css | 15 +++++++++++++++ docs/_templates/layout.html | 20 ++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 docs/_static/paste.css create mode 100644 docs/_templates/layout.html 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() }} + +{% endblock %} + +{% block sidebartoc %} +

Python Paste

+ + + +{{ super() }} +{% endblock %} -- cgit v1.2.1