{{if 'mermaid' in conf.plugins:}}
{{pass}}
{{for c in custom_css:}}
{{pass}}
{{=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
}}