From f4e5c7efd1aeef98478be9e5e93eceeed9712a76 Mon Sep 17 00:00:00 2001 From: blankie Date: Sun, 14 Jun 2026 08:05:20 +0000 Subject: [PATCH] template: remove forum css from DEFAULT_TEMPLATE (injected at render time) --- templates.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates.py b/templates.py index e0edb19..89dadd7 100644 --- a/templates.py +++ b/templates.py @@ -46,13 +46,13 @@ def _nav_html(): "
\n" ) -DEFAULT_TEMPLATE = "\n\n\n\n" + FORUM_CSS + "\n\n{{nav}}{{content}}\n\n" +DEFAULT_TEMPLATE = "\n\n\n\n\n\n{{nav}}{{content}}\n\n" def _default_template(): return ( '\n\n\n\n' - + FORUM_CSS + '\n\n{{nav}}{{content}}\n\n' + '\n\n{{nav}}{{content}}\n\n' )