aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2011-08-10 15:14:38 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:54:43 -0300
commitd44123b26e0e81c78a66b25513b44c580e306641 (patch)
treea1c904c7aa1c49726c394bfb85f6740e0d13c74b /doc
parent8270b38ecf10f33d48cf32551f1b3106ff5fdc1b (diff)
Fix links 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 b07c9f7d3..9dc53722d 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 -%}