Allow overriding partial blog index template

pull/2/head
Noah 2015-05-14 17:37:07 -07:00
parent 2441e729c3
commit 482b47b6aa
1 changed files with 2 additions and 2 deletions

View File

@ -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):