This commit is contained in:
2023-07-21 18:43:49 +02:00
commit 85a90a8fc1
9 changed files with 509 additions and 0 deletions

7
routes.py Normal file
View File

@@ -0,0 +1,7 @@
from flask import render_template
from . import app
@app.route("/", methods=["GET"])
def index():
return render_template("pages/index.html")