From 8ba2c20b25ac6d1ea2579ec361f0f3d29c763179 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 12 Oct 2023 14:07:23 +0100 Subject: [PATCH] Default theme --- webapp_utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webapp_utils.py b/webapp_utils.py index aab86a847..3fd95ee51 100644 --- a/webapp_utils.py +++ b/webapp_utils.py @@ -1669,6 +1669,8 @@ def html_post_separator(base_dir: str, column: str) -> str: """Returns the html for a timeline post separator image """ theme = get_config_param(base_dir, 'theme') + if not theme: + theme = 'default' filename = 'separator.png' separator_class = "postSeparatorImage" if column: