diff --git a/app.py b/app.py index d82c51f0d..17d7bf4dd 100644 --- a/app.py +++ b/app.py @@ -1,6 +1,7 @@ -from flask import Flask +from flask import Flask, render_template app = Flask(__name__) + @app.route('/') def hello_world(): - return 'Hello, World!' + return render_template('index.html') diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 000000000..6aac32edd --- /dev/null +++ b/templates/index.html @@ -0,0 +1,19 @@ + + + +
+ + +