deadfoxjunction: Fix the logo.
[matthijs/projects/wipi.git] / conf / deadfoxjunction.py
index 145db8eb752e941a15d74916ab208471d2caa6ba..b7a7084c3a3cd80f768371cf46f702abfe2ba603 100644 (file)
@@ -24,11 +24,15 @@ class Config(FarmConfig):
     editor_force = True
     editor_default = 'text'  # internal default, just for completeness
 
-    theme_default = 'deadfoxjunction'
+    # Use a site-theme for /Site/ and a normal wiki theme for the rest.
+    proxy_theme_mapping = [
+        ('/Site/', 'deadfoxjunction'),
+        ('', 'modernized'),
+    ]
      
     # Set cookies on /, so they work on /wipi and /Site alike.
     cookie_path = '/'
     
-    logo_string = '<img src="%s/%s/img/logo.png" alt="Dead Fox Junction">' % (FarmConfig.url_prefix_static, theme_default)
+    logo_string = '<img src="%s/%s/img/logo.png" alt="Dead Fox Junction">' % (FarmConfig.url_prefix_static, 'deadfoxjunction')
 
 # vim: set ts=8 sts=4 sw=4 expandtab: