aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2011-08-10 15:20:30 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-09 19:10:18 -0300
commit7c2acc64fb7d345c184c91336ed20913a6d6d791 (patch)
treeeb4bab4d2dd95531dfed16fceebbffc6d2dd1963
parent44a69e123dd2f610f0b7ecdd505a61130152e58c (diff)
Fix link on rel bar.
-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 e71963e40..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 -%}