From 4c42cbabd80a5bc4129cd490d16b64ca824dd277 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Thu, 25 Jun 2020 22:14:07 +0530 Subject: Bumped Bootstrap version from 4.0 to 4.5, added favicon, modified header, added 404.html, added about me, modified base html --- app/views.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'app/views.py') diff --git a/app/views.py b/app/views.py index 67bd94f..a3c75c8 100644 --- a/app/views.py +++ b/app/views.py @@ -23,6 +23,11 @@ def home(): """Render website's home page.""" return render_template('home.html') +@app.route('/About') +def about(): + """Render about page.""" + return render_template('about.html') + @app.route('/basic-form', methods=['GET', 'POST']) def basic_form(): -- cgit v1.2.3