fix url thing

This commit is contained in:
Don Harper 2015-06-09 23:15:57 -06:00
parent 1a020ca68b
commit 1476ef83ee
170 changed files with 1057 additions and 5841 deletions

View file

@ -4,7 +4,7 @@ UNDEFINED = runtime.UNDEFINED
__M_dict_builtin = dict
__M_locals_builtin = locals
_magic_number = 10
_modified_time = 1433908197.6433148
_modified_time = 1433913321.3827472
_enable_loop = True
_template_filename = '/usr/lib/python3.4/site-packages/nikola/data/themes/base/templates/list.tmpl'
_template_uri = 'list.tmpl'
@ -27,11 +27,11 @@ def render_body(context,**pageargs):
__M_caller = context.caller_stack._push_frame()
try:
__M_locals = __M_dict_builtin(pageargs=pageargs)
def content():
return render_content(context._locals(__M_locals))
messages = context.get('messages', UNDEFINED)
title = context.get('title', UNDEFINED)
items = context.get('items', UNDEFINED)
messages = context.get('messages', UNDEFINED)
def content():
return render_content(context._locals(__M_locals))
__M_writer = context.writer()
__M_writer('\n\n')
if 'parent' not in context._data or not hasattr(context._data['parent'], 'content'):
@ -47,11 +47,11 @@ def render_body(context,**pageargs):
def render_content(context,**pageargs):
__M_caller = context.caller_stack._push_frame()
try:
def content():
return render_content(context)
messages = context.get('messages', UNDEFINED)
title = context.get('title', UNDEFINED)
items = context.get('items', UNDEFINED)
messages = context.get('messages', UNDEFINED)
def content():
return render_content(context)
__M_writer = context.writer()
__M_writer('\n<article class="listpage">\n <header>\n <h1>')
__M_writer(str(title))