diff options
author | Hugo Parente Lima <hugo.pl@gmail.com> | 2011-08-10 15:14:38 -0300 |
---|---|---|
committer | Hugo Parente Lima <hugo.pl@gmail.com> | 2011-08-10 15:15:42 -0300 |
commit | 9d4b14d31b9b24dd96a31079b7d28f63b2d941b7 (patch) | |
tree | 90aa410294547f64abe0f02e612bf1b749512892 /doc | |
parent | 405c26c30db706649f817261ec66d489475251d2 (diff) | |
download | pyside-9d4b14d31b9b24dd96a31079b7d28f63b2d941b7.tar.gz pyside-9d4b14d31b9b24dd96a31079b7d28f63b2d941b7.tar.xz pyside-9d4b14d31b9b24dd96a31079b7d28f63b2d941b7.zip |
Fix links on rel bar.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/_templates/layout.html | 12 |
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 -%} |