aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2011-08-10 15:25:30 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2011-08-10 15:26:36 -0300
commitd3c686acb6ac3c0c75e3184e2bf531ae25b6fcbb (patch)
tree4b66f9417c97a040ebf279cef74d57fcc7be93b0 /doc
parent6a30e5a2504bbfda064c08176009cd61b53d4abf (diff)
Fix link on rel bar.
Diffstat (limited to 'doc')
-rw-r--r--doc/_templates/layout.html12
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/_templates/layout.html b/doc/_templates/layout.html
index b07c9f7..9dc5372 100644
--- a/doc/_templates/layout.html
+++ b/doc/_templates/layout.html
@@ -9,7 +9,17 @@
<div class="header">
<div class="header_container">
<div class="logo"><a href="http://www.pyside.org"><img alt="PySide" src="{{ pathto('_static/pysidelogo.png', 1) }}" width="199" height="102" /></a></div>
- {{ relbar() }}
+ <div class="related">
+ <ul>
+ {%- block rootrellink %}
+ <li><a href="{{ pathto( 'index' ) }}">{{ shorttitle|e }}</a></li>
+ {%- endblock %}
+ {%- for parent in parents %}
+ <li>{{ reldelim1 }} <a href="{{ parent.link|e }}" {% if loop.last %}{{ accesskey("U") }}{% endif %}>{{ parent.title }}</a></li>
+ {%- endfor %}
+ {%- block relbaritems %} {% endblock %}
+ </ul>
+ </div>
</div>
</div>
{%- endblock -%}