combination

This commit is contained in:
m
2026-03-25 01:32:03 +01:00
parent 67ec5753bf
commit a90f06d913
5 changed files with 8 additions and 18 deletions

2
app.py
View File

@@ -117,8 +117,6 @@ def post_detail(post_id):
return "Post not found", 404
comments = get_comments_for_post(post_id)
if post_id == 2:
return render_template('post_detail_test.html', post=post, comments=comments, blog_title = TITLE)
return render_template('post_detail.html', post=post, comments=comments, blog_title = TITLE)