Allow overriding partial blog index template

pull/2/head
Noah 2015-05-14 17:37:07 -07:00
父节点 2441e729c3
当前提交 482b47b6aa
共有 1 个文件被更改,包括 2 次插入2 次删除

查看文件

@ -403,7 +403,7 @@ def xml_add_text_tags(doc, root_node, tags):
root_node.appendChild(channelTag)
def partial_index():
def partial_index(template_name="blog/index.inc.html"):
"""Partial template for including the index view of the blog."""
# Get the blog index.
@ -494,7 +494,7 @@ def partial_index():
g.info["category"] = category
g.info["posts"] = selected
return template("blog/index.inc.html")
return template(template_name)
def get_index_posts(index):