Mercurial > trustbridge
view doc/help/theme/better/relbar.html @ 1367:e7a8ec3185f2
Add nosign option to linux-createpackage and use it in create-dist-package
This should prevent doubled signatures in distributed packages which
were first signed on the development system with the test key and
then from the administrator application.
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Mon, 24 Nov 2014 14:03:47 +0100 |
parents | cf1fdb254c41 |
children |
line wrap: on
line source
{%- macro rellink_markup() %} <nav id="rellinks"> <ul> {%- if prev %} <li> ← <a href="{{ prev.link|e }}" title="Previous document">{{ prev.title }}</a> </li> {%- endif %} {%- if next %} <li> <a href="{{ next.link|e }}" title="Next document">{{ next.title }}</a> → </li> {%- endif %} </ul> </nav> {%- endmacro %} {%- macro breadcrumbs_markup() %} <nav id="breadcrumbs"> <ul> {%- block rootrellink %} <li><a href="{{ pathto(master_doc) }}">{{ shorttitle|e }}</a></li> {%- endblock %} {%- for parent in parents %} <li> <a href="{{ parent.link|e }}">{{ parent.title }}</a> </li> {%- endfor %} {%- block relbaritems %} {% endblock %} </ul> </nav> {%- endmacro %} {%- macro relbar_top() %} {%- if theme_showrelbartop|tobool %} <div class="related top"> {{- rellink_markup () }} {{- breadcrumbs_markup() }} </div> {%- endif %} {%- endmacro %} {%- macro relbar_bottom() %} {%- if theme_showrelbarbottom|tobool %} <div class="related bottom"> {{- rellink_markup () }} {{- breadcrumbs_markup() }} </div> {%- endif %} {%- endmacro %}