12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- # -*- coding:utf-8 -*-
- from mako import runtime, filters, cache
- UNDEFINED = runtime.UNDEFINED
- STOP_RENDERING = runtime.STOP_RENDERING
- __M_dict_builtin = dict
- __M_locals_builtin = locals
- _magic_number = 10
- _modified_time = 1676236796.2577004
- _enable_loop = True
- _template_filename = 'themes/bootstrap3/templates/ui_helper.tmpl'
- _template_uri = 'ui_helper.tmpl'
- _source_encoding = 'utf-8'
- _exports = ['breadcrumbs']
-
-
- def render_body(context,**pageargs):
- __M_caller = context.caller_stack._push_frame()
- try:
- __M_locals = __M_dict_builtin(pageargs=pageargs)
- __M_writer = context.writer()
- __M_writer('\n')
- return ''
- finally:
- context.caller_stack._pop_frame()
-
-
- def render_breadcrumbs(context,crumbs):
- __M_caller = context.caller_stack._push_frame()
- try:
- index_file = context.get('index_file', UNDEFINED)
- __M_writer = context.writer()
- __M_writer('\n')
- if crumbs:
- __M_writer('<nav class="breadcrumbs">\n<ul class="breadcrumb">\n')
- for link, text in crumbs:
- if text != index_file:
- if link == '#':
- __M_writer(' <li>')
- __M_writer(str(text.rsplit('.html', 1)[0]))
- __M_writer('</li>\n')
- else:
- __M_writer(' <li><a href="')
- __M_writer(str(link))
- __M_writer('">')
- __M_writer(str(text))
- __M_writer('</a></li>\n')
- __M_writer('</ul>\n</nav>\n')
- return ''
- finally:
- context.caller_stack._pop_frame()
-
-
- """
- __M_BEGIN_METADATA
- {"filename": "themes/bootstrap3/templates/ui_helper.tmpl", "uri": "ui_helper.tmpl", "source_encoding": "utf-8", "line_map": {"16": 0, "21": 18, "27": 2, "32": 2, "33": 3, "34": 4, "35": 6, "36": 7, "37": 8, "38": 9, "39": 9, "40": 9, "41": 10, "42": 11, "43": 11, "44": 11, "45": 11, "46": 11, "47": 15, "53": 47}}
- __M_END_METADATA
- """
|