update idk
Deploy website / deploy (push) Successful in 2m1s

This commit is contained in:
2026-03-29 15:50:47 +01:00
parent 8dae4c1b5d
commit af5116d931
12 changed files with 41 additions and 59 deletions
+3 -5
View File
@@ -7,10 +7,8 @@ try:
import src.dynamic_routes as dynamic_routes
import src.errors as errors
import src.pg_log as pg_log
from src.name import get_name
except ImportError:
import dynamic_routes, errors, pg_log
from name import get_name
from dotenv import load_dotenv
load_dotenv()
@@ -62,15 +60,15 @@ log.info("Blueprints registered.")
# ROUTES
@app.route("/")
def index():
return render_template("index.html", name=get_name(request))
return render_template("index.html")
@app.route("/toaster")
def toaster():
return render_template("toaster.html", name=get_name(request))
return render_template("toaster.html")
@app.route("/terminal")
def terminal():
return render_template("terminal.html", name=get_name(request))
return render_template("terminal.html")