123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- # -*- 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.1002333
- _enable_loop = True
- _template_filename = 'themes/bootblog/templates/post_header.tmpl'
- _template_uri = 'post_header.tmpl'
- _source_encoding = 'utf-8'
- _exports = ['html_title', 'html_translations', 'html_sourcelink', 'html_post_header']
-
-
- 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('comments', context._clean_inheritance_tokens(), templateuri='comments_helper.tmpl', callables=None, calling_uri=_template_uri)
- context.namespaces[(__name__, 'comments')] = ns
-
- 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')
- __M_writer('\n\n')
- __M_writer('\n\n')
- __M_writer('\n\n')
- __M_writer('\n\n')
- __M_writer('\n')
- return ''
- finally:
- context.caller_stack._pop_frame()
-
-
- def render_html_title(context):
- __M_caller = context.caller_stack._push_frame()
- try:
- post = context.get('post', UNDEFINED)
- title = context.get('title', UNDEFINED)
- __M_writer = context.writer()
- __M_writer('\n')
- if title and not post.meta('hidetitle'):
- __M_writer(' <h2 class="p-name entry-title blog-post-title" itemprop="headline name"><a href="')
- __M_writer(str(post.permalink()))
- __M_writer('" class="u-url">')
- __M_writer(filters.html_escape(str(post.title())))
- __M_writer('</a></h2>\n')
- return ''
- finally:
- context.caller_stack._pop_frame()
-
-
- def render_html_translations(context,post):
- __M_caller = context.caller_stack._push_frame()
- try:
- messages = context.get('messages', UNDEFINED)
- lang = context.get('lang', UNDEFINED)
- len = context.get('len', UNDEFINED)
- translations = context.get('translations', UNDEFINED)
- __M_writer = context.writer()
- __M_writer('\n')
- if len(post.translated_to) > 1:
- __M_writer(' <div class="metadata posttranslations translations">\n <h3 class="posttranslations-intro">')
- __M_writer(str(messages("Also available in:")))
- __M_writer('</h3>\n')
- for langname in translations.keys():
- if langname != lang and post.is_translation_available(langname):
- __M_writer(' <p><a href="')
- __M_writer(str(post.permalink(langname)))
- __M_writer('" rel="alternate" hreflang="')
- __M_writer(str(langname))
- __M_writer('">')
- __M_writer(str(messages("LANGUAGE", langname)))
- __M_writer('</a></p>\n')
- __M_writer(' </div>\n')
- return ''
- finally:
- context.caller_stack._pop_frame()
-
-
- def render_html_sourcelink(context):
- __M_caller = context.caller_stack._push_frame()
- try:
- post = context.get('post', UNDEFINED)
- show_sourcelink = context.get('show_sourcelink', UNDEFINED)
- messages = context.get('messages', UNDEFINED)
- __M_writer = context.writer()
- __M_writer('\n')
- if show_sourcelink:
- __M_writer(' <p class="sourceline"><a href="')
- __M_writer(str(post.source_link()))
- __M_writer('" id="sourcelink">')
- __M_writer(str(messages("Source")))
- __M_writer('</a></p>\n')
- return ''
- finally:
- context.caller_stack._pop_frame()
-
-
- def render_html_post_header(context):
- __M_caller = context.caller_stack._push_frame()
- try:
- date_format = context.get('date_format', UNDEFINED)
- def html_title():
- return render_html_title(context)
- comments = _mako_get_namespace(context, 'comments')
- post = context.get('post', UNDEFINED)
- def html_sourcelink():
- return render_html_sourcelink(context)
- site_has_comments = context.get('site_has_comments', UNDEFINED)
- messages = context.get('messages', UNDEFINED)
- def html_translations(post):
- return render_html_translations(context,post)
- __M_writer = context.writer()
- __M_writer('\n <header>\n ')
- __M_writer(str(html_title()))
- __M_writer('\n <div class="metadata blog-post-meta">\n <p class="byline author vcard"><span class="byline-name fn">')
- __M_writer(str(post.author()))
- __M_writer('</span></p>\n <p class="dateline"><a href="')
- __M_writer(str(post.permalink()))
- __M_writer('" rel="bookmark"><time class="published dt-published" datetime="')
- __M_writer(str(post.date.isoformat()))
- __M_writer('" itemprop="datePublished" title="')
- __M_writer(str(post.formatted_date(date_format)))
- __M_writer('">')
- __M_writer(str(post.formatted_date(date_format)))
- __M_writer('</time></a></p>\n')
- if not post.meta('nocomments') and site_has_comments:
- __M_writer(' <p class="commentline">')
- __M_writer(str(comments.comment_link(post.permalink(), post._base_path)))
- __M_writer('\n')
- __M_writer(' ')
- __M_writer(str(html_sourcelink()))
- __M_writer('\n')
- if post.meta('link'):
- __M_writer(' <p class="linkline"><a href=\'')
- __M_writer(str(post.meta('link')))
- __M_writer("'>")
- __M_writer(str(messages("Original site")))
- __M_writer('</a></p>\n')
- if post.description():
- __M_writer(' <meta name="description" itemprop="description" content="')
- __M_writer(str(post.description()))
- __M_writer('">\n')
- __M_writer(' </div>\n ')
- __M_writer(str(html_translations(post)))
- __M_writer('\n </header>\n')
- return ''
- finally:
- context.caller_stack._pop_frame()
-
-
- """
- __M_BEGIN_METADATA
- {"filename": "themes/bootblog/templates/post_header.tmpl", "uri": "post_header.tmpl", "source_encoding": "utf-8", "line_map": {"23": 2, "26": 3, "29": 0, "34": 2, "35": 3, "36": 9, "37": 22, "38": 28, "39": 49, "45": 5, "51": 5, "52": 6, "53": 7, "54": 7, "55": 7, "56": 7, "57": 7, "63": 11, "71": 11, "72": 12, "73": 13, "74": 14, "75": 14, "76": 15, "77": 16, "78": 17, "79": 17, "80": 17, "81": 17, "82": 17, "83": 17, "84": 17, "85": 20, "91": 24, "98": 24, "99": 25, "100": 26, "101": 26, "102": 26, "103": 26, "104": 26, "110": 30, "125": 30, "126": 32, "127": 32, "128": 34, "129": 34, "130": 35, "131": 35, "132": 35, "133": 35, "134": 35, "135": 35, "136": 35, "137": 35, "138": 36, "139": 37, "140": 37, "141": 37, "142": 39, "143": 39, "144": 39, "145": 40, "146": 41, "147": 41, "148": 41, "149": 41, "150": 41, "151": 43, "152": 44, "153": 44, "154": 44, "155": 46, "156": 47, "157": 47, "163": 157}}
- __M_END_METADATA
- """
|