# -*- 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('

') __M_writer(filters.html_escape(str(post.title()))) __M_writer('

\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('
\n

') __M_writer(str(messages("Also available in:"))) __M_writer('

\n') for langname in translations.keys(): if langname != lang and post.is_translation_available(langname): __M_writer('

') __M_writer(str(messages("LANGUAGE", langname))) __M_writer('

\n') __M_writer('
\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('

') __M_writer(str(messages("Source"))) __M_writer('

\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
\n ') __M_writer(str(html_title())) __M_writer('\n
\n \n \n') if not post.meta('nocomments') and site_has_comments: __M_writer('

') __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('

") __M_writer(str(messages("Original site"))) __M_writer('

\n') if post.description(): __M_writer(' \n') __M_writer('
\n ') __M_writer(str(html_translations(post))) __M_writer('\n
\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 """