From a2beac108e1f7d1dc8ca4b5cecde17c531374baa Mon Sep 17 00:00:00 2001 From: Rishab Kumar Date: Wed, 1 Mar 2023 15:11:41 -0500 Subject: [PATCH] added some more instructions for templates in flas --- 2023/day48.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/2023/day48.md b/2023/day48.md index 389a4e6..cd284e8 100644 --- a/2023/day48.md +++ b/2023/day48.md @@ -64,8 +64,9 @@ def post(path): return render_template('post.html', content=html) ``` -Create templates for the home page and individual blog posts: -- `home.html`: +Create templates for the home page and individual blog posts, we can do this by creating a new directory in root of project called `templates`. And then further create the two following `html` files: + +- `index.html`: ``` html