blob: 87f256ecb84c3e37c001148e893c32927c3c70ef [file]
# toc.myt - prints full table of contents listings given toc.TOCElement strucures
<%def name="toc()">
<div class="topnav">
<a name="full_index"></a>
<h3>Table of Contents</h3>
${printtoc(root=context.get('toc'),current=None,full=True,children=True,anchor_toplevel=False)}
</div>
</%def>
<%def name="printtoc(root,current=None,full=False,children=True,anchor_toplevel=False)">
<ul>
% for item in root.children:
<li><A style="${item is current and "font-weight:bold;" or "" }" href="${item.get_link(extension=extension,anchor=anchor_toplevel, usefilename=paged) }">${item.description}</a></li>
% if children:
${printtoc(item, current=current, full=full,children=True,anchor_toplevel=True)}
% endif
% endfor
</ul>
</%def>