{{=title}}
{{
def menu(current='home'):
for id, caption, link in menus:
if not (link.startswith('http://') or link.startswith('https://')):
link = '%s/%s' % (relpath, link)
pass
if id == current:
out.write('%s' % (link, caption), escape=False)
else:
out.write('%s' % (link, caption), escape=False)
pass
pass
pass
}}