from mako import runtime, filters, cache UNDEFINED = runtime.UNDEFINED __M_dict_builtin = dict __M_locals_builtin = locals _magic_number = 5 _modified_time = 1250058320.087369 _template_filename='tg/test_stack/rendering/templates/mako_inherits.mak' _template_uri='mako_inherits.mak' _template_cache=cache.Cache(__name__, _modified_time) _source_encoding='utf-8' from webhelpers.html import escape _exports = ['head_tags'] def _mako_get_namespace(context, name): try: return context.namespaces[(__name__, name)] except KeyError: _mako_generate_namespaces(context) return context.namespaces[(__name__, name)] def _mako_generate_namespaces(context): pass def _mako_inherit(template, context): _mako_generate_namespaces(context) return runtime._inherit_from(context, '/mako_base.mak', _template_uri) def render_body(context,**pageargs): context.caller_stack._push_frame() try: __M_locals = __M_dict_builtin(pageargs=pageargs) __M_writer = context.writer() # SOURCE LINE 2 __M_writer(u'\n\n') # SOURCE LINE 6 __M_writer(u'\n\n

New Page

\n\n

inherited mako page

') return '' finally: context.caller_stack._pop_frame() def render_head_tags(context): context.caller_stack._push_frame() try: __M_writer = context.writer() # SOURCE LINE 4 __M_writer(u'\n \n') return '' finally: context.caller_stack._pop_frame()