summaryrefslogtreecommitdiff
path: root/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'app.py')
-rw-r--r--app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.py b/app.py
index e0b4d13..97fe702 100644
--- a/app.py
+++ b/app.py
@@ -33,7 +33,7 @@ def blog_post(y, m, d, title):
if h.startswith('title'):
title = h.split('title:')[0].strip()
html = markdown.markdown(body, extensions=['markdown.extensions.extra', 'markdown.extensions.codehilite'])
- return render_template('post.html', title=title, html=html)
+ return render_template('blog-post.html', title=title, html=html)
def parse_page(page):
slug = page[:-3]