Source code for winterthur.theme.winterthur_theme
from __future__ import annotations
from onegov.core.utils import module_path
from onegov.org.theme import OrgTheme
# options editable by the user
[docs]
class WinterthurTheme(OrgTheme):
@property
@property
[docs]
def extra_search_paths(self) -> list[str]:
base_paths = super().extra_search_paths
return [module_path('onegov.winterthur.theme', 'styles'), *base_paths]
@property
[docs]
def pre_imports(self) -> list[str]:
return [*super().pre_imports, 'winterthur-foundation-mods']