From 62c313996536cb88a3ea09f4344cb2bdaa5cacca Mon Sep 17 00:00:00 2001 From: Michael McVady Date: Mon, 29 Jan 2024 19:50:10 -0600 Subject: Fix HTML --- app.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'app.py') diff --git a/app.py b/app.py index 27f7a9e..ab23e45 100644 --- a/app.py +++ b/app.py @@ -16,6 +16,9 @@ lifxlan = LifxLAN() DEFAULT_COLOR = "#FF0000" TEMPLATE_STR = """ + +lux +

{{ message }}

@@ -61,7 +64,7 @@ async def get_index() -> Template: ) return Template( - template_str=TEMPLATE_STR, context={"color": rgb_hex, "message": ""} + template_str=TEMPLATE_STR, context={"color": rgb_hex, "message": " "} ) -- cgit v1.2.3