config: Use "Start" as the frontpage for all sites.
[matthijs/projects/wipi.git] / conf / extinction.py
index 3137da196b37b9c399fa8b19e5b407fe1abbd3f8..040f20c242d67fa45496266cd4d7a5c83c4fee27 100644 (file)
@@ -13,9 +13,6 @@ class Config(FarmConfig):
     sitename = u'Extinction'
     interwikiname = 'Extinction'
 
-    # name of entry page
-    page_front_page = u"Home"
-
     data_dir = data_dir_root + '/extinction/'
 
     # The GUI WYSISYG editor is not installed with Debian.
@@ -23,6 +20,10 @@ class Config(FarmConfig):
     editor_force = True
     editor_default = 'text'  # internal default, just for completeness
 
-    theme_default = 'classic'
+    # Use a site-theme for /Site/ and a normal wiki theme for the rest.
+    proxy_theme_mapping = [
+        ('/Site/', 'extinction'),
+        ('', 'modernized'),
+    ]
 
 # vim: set ts=8 sts=4 sw=4 expandtab: