Add notes page
Some checks failed
docker-build / build (push) Has been cancelled

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Ubuntu
2026-01-31 20:40:53 +00:00
parent d168287636
commit 090f5943c3
2 changed files with 65 additions and 0 deletions

View File

@@ -1150,6 +1150,10 @@ def create_app(config: AppConfig = CONFIG) -> Flask:
def graph_page():
return send_from_directory(app.static_folder, "graph.html")
@app.route("/notes")
def notes_page():
return send_from_directory(app.static_folder, "notes.html")
@app.route("/static/<path:filename>")
def static_files(filename: str):
return send_from_directory(app.static_folder, filename)