diff --git a/gruppenbildungsspiel.py b/gruppenbildungsspiel.py new file mode 100644 index 0000000..68c31c8 --- /dev/null +++ b/gruppenbildungsspiel.py @@ -0,0 +1,6 @@ +from flask import Flask, render_template +app = Flask(__name__) + +@app.route('/') +def index(): + return render_template('index.html', title='Test', text='Hallo, Fooboar') diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..7f68735 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,10 @@ + + +
+ +{{ text }}
+ +