Add favicons to enhance site visibility

This commit is contained in:
2024-10-29 21:42:04 +01:00
parent a162660264
commit 49d91b3999
10 changed files with 16 additions and 7 deletions

View File

@@ -530,6 +530,9 @@ def apps_running():
def index():
return bottle.static_file("index.html", root='html')
@bottle.route("/<filepath:path>")
def serve_static(filepath):
return bottle.static_file(filepath, root='html')
@bottle.route("/setgamma/<r>/<g>/<b>/<w>")
def setGamma(r, g, b, w):