From 9a6d45344356413e0d78ed62a37f8c13ae070a8a Mon Sep 17 00:00:00 2001 From: Klaas van Schelven Date: Tue, 8 Jul 2025 17:04:38 +0200 Subject: [PATCH] Fix 2 bare_base/barest_base mistakes re dark mode * in 1abc30a760f7 the hardcoding of ="dark" (during development) was accidentally checked in; it never should have been. * in e14b3eaaa651 I mixed up the bare*base templates. It's actually bare_base.html that's for 404/500 etc; barest_base is more bare visually (it's the box-based layout for login etc), but it doesn't need to be so careful not to use variables. See #40 --- theme/templates/bare_base.html | 2 +- theme/templates/barest_base.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/theme/templates/bare_base.html b/theme/templates/bare_base.html index 0daa13f..588ddbc 100644 --- a/theme/templates/bare_base.html +++ b/theme/templates/bare_base.html @@ -1,5 +1,5 @@ {% load static tailwind_tags %}{# copy of base.html, but without variables (and hence no menu), for use in contextless templates (e.g. 500.html) #} - + {% block title %}Bugsink{% endblock %} diff --git a/theme/templates/barest_base.html b/theme/templates/barest_base.html index 870c988..b57f0ea 100644 --- a/theme/templates/barest_base.html +++ b/theme/templates/barest_base.html @@ -1,5 +1,5 @@ {% load static tailwind_tags %}{# copy of bare_base.html, but without even a menu bar #} - + {% block title %}Bugsink{% endblock %}