# -*- coding:utf-8 -*- from mako import runtime, filters, cache UNDEFINED = runtime.UNDEFINED __M_dict_builtin = dict __M_locals_builtin = locals _magic_number = 10 _modified_time = 1434078007.629244 _enable_loop = True _template_filename = 'themes/bootstrap/templates/post.tmpl' _template_uri = 'post.tmpl' _source_encoding = 'utf-8' _exports = ['extra_head', 'sourcelink', 'content'] 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): ns = runtime.TemplateNamespace('comments', context._clean_inheritance_tokens(), templateuri='comments_helper.tmpl', callables=None, calling_uri=_template_uri) context.namespaces[(__name__, 'comments')] = ns ns = runtime.TemplateNamespace('helper', context._clean_inheritance_tokens(), templateuri='post_helper.tmpl', callables=None, calling_uri=_template_uri) context.namespaces[(__name__, 'helper')] = ns ns = runtime.TemplateNamespace('pheader', context._clean_inheritance_tokens(), templateuri='post_header.tmpl', callables=None, calling_uri=_template_uri) context.namespaces[(__name__, 'pheader')] = ns def _mako_inherit(template, context): _mako_generate_namespaces(context) return runtime._inherit_from(context, 'base.tmpl', _template_uri) def render_body(context,**pageargs): __M_caller = context.caller_stack._push_frame() try: __M_locals = __M_dict_builtin(pageargs=pageargs) messages = context.get('messages', UNDEFINED) def extra_head(): return render_extra_head(context._locals(__M_locals)) def sourcelink(): return render_sourcelink(context._locals(__M_locals)) show_sourcelink = context.get('show_sourcelink', UNDEFINED) helper = _mako_get_namespace(context, 'helper') def content(): return render_content(context._locals(__M_locals)) parent = context.get('parent', UNDEFINED) post = context.get('post', UNDEFINED) comments = _mako_get_namespace(context, 'comments') site_has_comments = context.get('site_has_comments', UNDEFINED) pheader = _mako_get_namespace(context, 'pheader') __M_writer = context.writer() __M_writer('\n') __M_writer('\n') __M_writer('\n') __M_writer('\n\n') if 'parent' not in context._data or not hasattr(context._data['parent'], 'extra_head'): context['self'].extra_head(**pageargs) __M_writer('\n\n') if 'parent' not in context._data or not hasattr(context._data['parent'], 'content'): context['self'].content(**pageargs) __M_writer('\n\n') if 'parent' not in context._data or not hasattr(context._data['parent'], 'sourcelink'): context['self'].sourcelink(**pageargs) __M_writer('\n') return '' finally: context.caller_stack._pop_frame() def render_extra_head(context,**pageargs): __M_caller = context.caller_stack._push_frame() try: post = context.get('post', UNDEFINED) def extra_head(): return render_extra_head(context) parent = context.get('parent', UNDEFINED) helper = _mako_get_namespace(context, 'helper') __M_writer = context.writer() __M_writer('\n ') __M_writer(str(parent.extra_head())) __M_writer('\n') if post.meta('keywords'): __M_writer(' \n') if post.description(): __M_writer(' \n') __M_writer(' \n') if post.prev_post: __M_writer(' \n') if post.next_post: __M_writer(' \n') __M_writer(' ') __M_writer(str(helper.open_graph_metadata(post))) __M_writer('\n ') __M_writer(str(helper.twitter_card_information(post))) __M_writer('\n ') __M_writer(str(helper.meta_translations(post))) __M_writer('\n') return '' finally: context.caller_stack._pop_frame() def render_sourcelink(context,**pageargs): __M_caller = context.caller_stack._push_frame() try: post = context.get('post', UNDEFINED) def sourcelink(): return render_sourcelink(context) show_sourcelink = context.get('show_sourcelink', UNDEFINED) messages = context.get('messages', UNDEFINED) __M_writer = context.writer() __M_writer('\n') if show_sourcelink: __M_writer('
') __M_writer(str(messages("Comments"))) __M_writer('
\n ') __M_writer(str(comments.comment_form(post.permalink(absolute=True), post.title(), post._base_path))) __M_writer('\n