diff --git a/app.py b/app.py index 374ec7343..6d2c93b11 100644 --- a/app.py +++ b/app.py @@ -6,5 +6,9 @@ def index(): return render_template('index.html') +@app.route('/about') +def about(): + return render_template('about.html') + if __name__ == '__main__': app.run(port=33507) diff --git a/templates/about.html b/templates/about.html new file mode 100644 index 000000000..bd69788a7 --- /dev/null +++ b/templates/about.html @@ -0,0 +1,30 @@ + + + + + + + + + + Wilkommen, bienvenue, and welcome to Heroku! + + + + + +
+
+
+

About

+

Home

+
+
+
+ + + + + + \ No newline at end of file diff --git a/templates/index.html b/templates/index.html index b980e0f77..42834d071 100644 --- a/templates/index.html +++ b/templates/index.html @@ -18,6 +18,7 @@

Hello, World!