Allow overriding partial blog index template
This commit is contained in:
parent
2441e729c3
commit
482b47b6aa
|
@ -403,7 +403,7 @@ def xml_add_text_tags(doc, root_node, tags):
|
||||||
root_node.appendChild(channelTag)
|
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."""
|
"""Partial template for including the index view of the blog."""
|
||||||
|
|
||||||
# Get the blog index.
|
# Get the blog index.
|
||||||
|
@ -494,7 +494,7 @@ def partial_index():
|
||||||
g.info["category"] = category
|
g.info["category"] = category
|
||||||
g.info["posts"] = selected
|
g.info["posts"] = selected
|
||||||
|
|
||||||
return template("blog/index.inc.html")
|
return template(template_name)
|
||||||
|
|
||||||
|
|
||||||
def get_index_posts(index):
|
def get_index_posts(index):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user