123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- # -*- 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.1278715
- _enable_loop = True
- _template_filename = 'themes/bootblog/templates/post.tmpl'
- _template_uri = 'post.tmpl'
- _source_encoding = 'utf-8'
- _exports = ['extra_head', 'content', 'sourcelink']
-
-
- 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('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
-
- 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('math', context._clean_inheritance_tokens(), templateuri='math_helper.tmpl', callables=None, calling_uri=_template_uri)
- context.namespaces[(__name__, 'math')] = 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)
- math = _mako_get_namespace(context, 'math')
- parent = context.get('parent', UNDEFINED)
- messages = context.get('messages', UNDEFINED)
- def extra_head():
- return render_extra_head(context._locals(__M_locals))
- comments = _mako_get_namespace(context, 'comments')
- post = context.get('post', UNDEFINED)
- helper = _mako_get_namespace(context, 'helper')
- pheader = _mako_get_namespace(context, 'pheader')
- def content():
- return render_content(context._locals(__M_locals))
- site_has_comments = context.get('site_has_comments', UNDEFINED)
- def sourcelink():
- return render_sourcelink(context._locals(__M_locals))
- show_sourcelink = context.get('show_sourcelink', UNDEFINED)
- __M_writer = context.writer()
- __M_writer('\n')
- __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)
- math = _mako_get_namespace(context, 'math')
- helper = _mako_get_namespace(context, 'helper')
- parent = context.get('parent', UNDEFINED)
- def extra_head():
- return render_extra_head(context)
- __M_writer = context.writer()
- __M_writer('\n ')
- __M_writer(str(parent.extra_head()))
- __M_writer('\n')
- if post.meta('keywords'):
- __M_writer(' <meta name="keywords" content="')
- __M_writer(filters.html_escape(str(post.meta('keywords'))))
- __M_writer('">\n')
- if post.description():
- __M_writer(' <meta name="description" itemprop="description" content="')
- __M_writer(str(post.description()))
- __M_writer('">\n')
- __M_writer(' <meta name="author" content="')
- __M_writer(str(post.author()))
- __M_writer('">\n')
- if post.prev_post:
- __M_writer(' <link rel="prev" href="')
- __M_writer(str(post.prev_post.permalink()))
- __M_writer('" title="')
- __M_writer(filters.html_escape(str(post.prev_post.title())))
- __M_writer('" type="text/html">\n')
- if post.next_post:
- __M_writer(' <link rel="next" href="')
- __M_writer(str(post.next_post.permalink()))
- __M_writer('" title="')
- __M_writer(filters.html_escape(str(post.next_post.title())))
- __M_writer('" type="text/html">\n')
- if post.is_draft:
- __M_writer(' <meta name="robots" content="noindex">\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 ')
- __M_writer(str(math.math_styles_ifpost(post)))
- __M_writer('\n')
- return ''
- finally:
- context.caller_stack._pop_frame()
-
-
- def render_content(context,**pageargs):
- __M_caller = context.caller_stack._push_frame()
- try:
- math = _mako_get_namespace(context, 'math')
- messages = context.get('messages', UNDEFINED)
- comments = _mako_get_namespace(context, 'comments')
- post = context.get('post', UNDEFINED)
- helper = _mako_get_namespace(context, 'helper')
- site_has_comments = context.get('site_has_comments', UNDEFINED)
- def content():
- return render_content(context)
- pheader = _mako_get_namespace(context, 'pheader')
- __M_writer = context.writer()
- __M_writer('\n<article class="post-')
- __M_writer(str(post.meta('type')))
- __M_writer(' h-entry hentry postpage" itemscope="itemscope" itemtype="http://schema.org/Article">\n ')
- __M_writer(str(pheader.html_post_header()))
- __M_writer('\n <div class="e-content entry-content" itemprop="articleBody text">\n ')
- __M_writer(str(post.text()))
- __M_writer('\n </div>\n <aside class="postpromonav">\n <nav>\n ')
- __M_writer(str(helper.html_tags(post)))
- __M_writer('\n ')
- __M_writer(str(helper.html_pager(post)))
- __M_writer('\n </nav>\n </aside>\n')
- if not post.meta('nocomments') and site_has_comments:
- __M_writer(' <section class="comments hidden-print">\n <h2>')
- __M_writer(str(messages("Comments")))
- __M_writer('</h2>\n ')
- __M_writer(str(comments.comment_form(post.permalink(absolute=True), post.title(), post._base_path)))
- __M_writer('\n </section>\n')
- __M_writer(' ')
- __M_writer(str(math.math_scripts_ifpost(post)))
- __M_writer('\n</article>\n')
- __M_writer(str(comments.comment_link_script()))
- __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(' <a href="')
- __M_writer(str(post.source_link()))
- __M_writer('" class="blog-nav-item blog-nav-item-aside" id="sourcelink">')
- __M_writer(str(messages("Source")))
- __M_writer('</a>\n')
- return ''
- finally:
- context.caller_stack._pop_frame()
-
-
- """
- __M_BEGIN_METADATA
- {"filename": "themes/bootblog/templates/post.tmpl", "uri": "post.tmpl", "source_encoding": "utf-8", "line_map": {"23": 2, "26": 3, "29": 4, "32": 5, "38": 0, "58": 2, "59": 3, "60": 4, "61": 5, "62": 6, "67": 30, "72": 53, "77": 59, "83": 8, "93": 8, "94": 9, "95": 9, "96": 10, "97": 11, "98": 11, "99": 11, "100": 13, "101": 14, "102": 14, "103": 14, "104": 16, "105": 16, "106": 16, "107": 17, "108": 18, "109": 18, "110": 18, "111": 18, "112": 18, "113": 20, "114": 21, "115": 21, "116": 21, "117": 21, "118": 21, "119": 23, "120": 24, "121": 26, "122": 26, "123": 26, "124": 27, "125": 27, "126": 28, "127": 28, "128": 29, "129": 29, "135": 32, "148": 32, "149": 33, "150": 33, "151": 34, "152": 34, "153": 36, "154": 36, "155": 40, "156": 40, "157": 41, "158": 41, "159": 44, "160": 45, "161": 46, "162": 46, "163": 47, "164": 47, "165": 50, "166": 50, "167": 50, "168": 52, "169": 52, "175": 55, "184": 55, "185": 56, "186": 57, "187": 57, "188": 57, "189": 57, "190": 57, "196": 190}}
- __M_END_METADATA
- """
|