about summary refs log tree commit diff
diff options
context:
space:
mode:
authoruser@node5.net <user@node5.net>2025-11-16 22:40:51 +0100
committeruser@node5.net <user@node5.net>2025-11-16 22:40:51 +0100
commit71eb65454185a6ded07147ffb5e8da89a60bdbec (patch)
tree5d35c2cde47168922f8dfb3e28da3e67bb22f8a2
parentae0772e70c1b843b4430d4cf0355ed8d5e564dc3 (diff)
Motd - Dark theme
-rw-r--r--src/blog_node5_net.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blog_node5_net.py b/src/blog_node5_net.py
index 0c2a865..a8961d8 100644
--- a/src/blog_node5_net.py
+++ b/src/blog_node5_net.py
@@ -122,7 +122,7 @@ def strip_trailing_slash(path):
 
 @app.route('/motd')
 def motd_debug():
-    return '\n'.join(motd_list)
+    return '<style>body {background-color: #000;color: #FFF;}</style>'+'\n'.join(motd_list)
 
 
 @app.route('/comment', methods=['POST'])