This commit is contained in:
2025-04-20 17:09:30 +01:00
commit 053a96b733
7 changed files with 126 additions and 0 deletions

17
website/app.py Normal file
View File

@@ -0,0 +1,17 @@
from flask import Flask, render_template
app = Flask(__name__)
# Route für die Startseite
@app.route('/')
def index():
return render_template('index.html')
# Route für die Mindmap-Seite
@app.route('/mindmap')
def mindmap():
return render_template('mindmap.html')
# Flask starten
if __name__ == '__main__':
app.run(debug=True)