166 lines
7.5 KiB
Python
166 lines
7.5 KiB
Python
# -*- 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 = 1434096008.0004394
|
|
_enable_loop = True
|
|
_template_filename = '/usr/lib/python3.4/site-packages/nikola/data/themes/base/templates/post_header.tmpl'
|
|
_template_uri = 'post_header.tmpl'
|
|
_source_encoding = 'utf-8'
|
|
_exports = ['html_sourcelink', 'html_post_header', 'html_translations', 'html_title']
|
|
|
|
|
|
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_sourcelink(context):
|
|
__M_caller = context.caller_stack._push_frame()
|
|
try:
|
|
messages = context.get('messages', UNDEFINED)
|
|
post = context.get('post', UNDEFINED)
|
|
show_sourcelink = context.get('show_sourcelink', 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:
|
|
def html_translations(post):
|
|
return render_html_translations(context,post)
|
|
comments = _mako_get_namespace(context, 'comments')
|
|
date_format = context.get('date_format', UNDEFINED)
|
|
def html_sourcelink():
|
|
return render_html_sourcelink(context)
|
|
def html_title():
|
|
return render_html_title(context)
|
|
messages = context.get('messages', UNDEFINED)
|
|
post = context.get('post', UNDEFINED)
|
|
site_has_comments = context.get('site_has_comments', UNDEFINED)
|
|
__M_writer = context.writer()
|
|
__M_writer('\n <header>\n ')
|
|
__M_writer(str(html_title()))
|
|
__M_writer('\n <div class="metadata">\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><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()
|
|
|
|
|
|
def render_html_translations(context,post):
|
|
__M_caller = context.caller_stack._push_frame()
|
|
try:
|
|
messages = context.get('messages', UNDEFINED)
|
|
len = context.get('len', UNDEFINED)
|
|
translations = context.get('translations', UNDEFINED)
|
|
lang = context.get('lang', 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_title(context):
|
|
__M_caller = context.caller_stack._push_frame()
|
|
try:
|
|
title = context.get('title', UNDEFINED)
|
|
post = context.get('post', UNDEFINED)
|
|
__M_writer = context.writer()
|
|
__M_writer('\n')
|
|
if title and not post.meta('hidetitle'):
|
|
__M_writer(' <h1 class="p-name entry-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></h1>\n')
|
|
return ''
|
|
finally:
|
|
context.caller_stack._pop_frame()
|
|
|
|
|
|
"""
|
|
__M_BEGIN_METADATA
|
|
{"source_encoding": "utf-8", "line_map": {"128": 14, "129": 15, "130": 16, "131": 17, "132": 17, "133": 17, "134": 17, "135": 17, "136": 17, "137": 17, "138": 20, "144": 5, "22": 2, "151": 6, "152": 7, "25": 3, "154": 7, "155": 7, "28": 0, "150": 5, "33": 2, "34": 3, "35": 9, "36": 22, "37": 28, "38": 49, "156": 7, "44": 24, "51": 24, "52": 25, "53": 26, "54": 26, "55": 26, "56": 26, "57": 26, "63": 30, "162": 156, "78": 30, "79": 32, "80": 32, "81": 34, "82": 34, "83": 35, "84": 35, "85": 35, "86": 35, "87": 35, "88": 35, "89": 35, "90": 35, "91": 36, "92": 37, "93": 37, "94": 37, "95": 39, "96": 39, "97": 39, "98": 40, "99": 41, "100": 41, "101": 41, "102": 41, "103": 41, "104": 43, "105": 44, "106": 44, "107": 44, "108": 46, "109": 47, "110": 47, "116": 11, "153": 7, "124": 11, "125": 12, "126": 13, "127": 14}, "uri": "post_header.tmpl", "filename": "/usr/lib/python3.4/site-packages/nikola/data/themes/base/templates/post_header.tmpl"}
|
|
__M_END_METADATA
|
|
"""
|