## nav.myt - Provides page navigation elements that are derived from toc.TOCElement structures, including ## individual hyperlinks as well as navigational toolbars and table-of-content listings. <%namespace name="tocns" file="toc.html"/> <%def name="itemlink(item, paged, extension, anchor=True)" filter="trim"> ${ item.description } <%def name="toclink(toc, path, extension, paged, description=None)" filter="trim"> <% item = toc.get_by_path(path) if description is None: if item: description = item.description else: description = path if item: anchor = not paged or item.depth > 1 else: anchor = False %> % if item: ${ description } % else: ${ description } % endif <%def name="link(href, text, class_)" filter="trim"> ${ text } <%def name="topnav(item, toc, extension, paged)">
${pagenav(item, extension=extension, paged=paged)} ${tocns.printtoc(root=item, current=None, anchor_toplevel=True, paged=paged, extension=extension)}
<%def name="pagenav(item, paged, extension)"> <%def name="bottomnav(item, paged, extension)">
${prevnext(item, paged, extension)}
<%def name="prevnext(item, paged, extension)">
% if item.up: Up: ${itemlink(item=item.up, paged=paged, anchor=not paged, extension=extension)} % endif % if item.previous is not None: ${item.up is not None and " | " or ""} Previous: ${itemlink(item=item.previous, paged=paged, anchor=not paged, extension=extension)} % endif % if item.next is not None: ${item.previous is not None and " | " or ""} Next: ${itemlink(item=item.next, paged=paged, anchor=not paged, extension=extension)} % endif