I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit f3582779 authored by str4d's avatar str4d
Browse files

Fall back to index.html if a page directory is requested instead of a page file

parent 83cca645
No related branches found
No related tags found
No related merge requests found
...@@ -117,9 +117,13 @@ def site_show(page='index'): ...@@ -117,9 +117,13 @@ def site_show(page='index'):
name = 'site/%s.html' % page name = 'site/%s.html' % page
page_file = safe_join(TEMPLATE_DIR, name) page_file = safe_join(TEMPLATE_DIR, name)
# bah! those damn users all the time!
if not os.path.exists(page_file): if not os.path.exists(page_file):
abort(404) # Could be a directory, so try index.html
name = 'site/%s/index.html' % page
page_file = safe_join(TEMPLATE_DIR, name)
if not os.path.exists(page_file):
# bah! those damn users all the time!
abort(404)
# hah! # hah!
return render_template(name, page=page) return render_template(name, page=page)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment