don't assume all styles are in the static directory

this is to make room for a second, instance-configured spot for them
This commit is contained in:
2022-12-31 10:16:35 -06:00
parent 83bc8b2c21
commit e9af2de21e
3 changed files with 11 additions and 11 deletions

View File

@@ -51,9 +51,9 @@ class Config(object):
# customizations
PAGE_STYLES = {
'dark': 'css/dark.css',
'light': 'css/light.css',
'plain': 'css/plain.css',
'dark': '/static/css/dark.css',
'light': '/static/css/light.css',
'plain': '/static/css/plain.css',
}
DEFAULT_PAGE_STYLE = 'light'