83 lines
3 KiB
Python
83 lines
3 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 = 1433913322.187537
|
|
_enable_loop = True
|
|
_template_filename = '/usr/lib/python3.4/site-packages/nikola/data/themes/base/templates/comments_helper_isso.tmpl'
|
|
_template_uri = 'comments_helper_isso.tmpl'
|
|
_source_encoding = 'utf-8'
|
|
_exports = ['comment_link_script', 'comment_form', 'comment_link']
|
|
|
|
|
|
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\n')
|
|
__M_writer('\n\n\n')
|
|
__M_writer('\n')
|
|
return ''
|
|
finally:
|
|
context.caller_stack._pop_frame()
|
|
|
|
|
|
def render_comment_link_script(context):
|
|
__M_caller = context.caller_stack._push_frame()
|
|
try:
|
|
comment_system_id = context.get('comment_system_id', UNDEFINED)
|
|
__M_writer = context.writer()
|
|
__M_writer('\n')
|
|
if comment_system_id:
|
|
__M_writer(' <script src="')
|
|
__M_writer(str(comment_system_id))
|
|
__M_writer('js/count.min.js" data-isso="')
|
|
__M_writer(str(comment_system_id))
|
|
__M_writer('"></script>\n')
|
|
return ''
|
|
finally:
|
|
context.caller_stack._pop_frame()
|
|
|
|
|
|
def render_comment_form(context,url,title,identifier):
|
|
__M_caller = context.caller_stack._push_frame()
|
|
try:
|
|
comment_system_id = context.get('comment_system_id', UNDEFINED)
|
|
__M_writer = context.writer()
|
|
__M_writer('\n')
|
|
if comment_system_id:
|
|
__M_writer(' <div data-title="')
|
|
__M_writer(filters.url_escape(str(title)))
|
|
__M_writer('" id="isso-thread"></div>\n <script src="')
|
|
__M_writer(str(comment_system_id))
|
|
__M_writer('js/embed.min.js" data-isso="')
|
|
__M_writer(str(comment_system_id))
|
|
__M_writer('"></script>\n')
|
|
return ''
|
|
finally:
|
|
context.caller_stack._pop_frame()
|
|
|
|
|
|
def render_comment_link(context,link,identifier):
|
|
__M_caller = context.caller_stack._push_frame()
|
|
try:
|
|
comment_system_id = context.get('comment_system_id', UNDEFINED)
|
|
__M_writer = context.writer()
|
|
__M_writer('\n')
|
|
if comment_system_id:
|
|
__M_writer(' <a href="')
|
|
__M_writer(str(link))
|
|
__M_writer('#isso-thread">Comments</a>\n')
|
|
return ''
|
|
finally:
|
|
context.caller_stack._pop_frame()
|
|
|
|
|
|
"""
|
|
__M_BEGIN_METADATA
|
|
{"filename": "/usr/lib/python3.4/site-packages/nikola/data/themes/base/templates/comments_helper_isso.tmpl", "uri": "comments_helper_isso.tmpl", "line_map": {"64": 9, "69": 9, "70": 10, "71": 11, "72": 11, "73": 11, "15": 0, "20": 7, "21": 13, "22": 20, "79": 73, "28": 16, "33": 16, "34": 17, "35": 18, "36": 18, "37": 18, "38": 18, "39": 18, "45": 2, "50": 2, "51": 3, "52": 4, "53": 4, "54": 4, "55": 5, "56": 5, "57": 5, "58": 5}, "source_encoding": "utf-8"}
|
|
__M_END_METADATA
|
|
"""
|