sites/www.qmsk.net/__init__.py
branchsites
changeset 32 be954df4f0e8
parent 31 107062ebb6f9
child 34 09196d5b2a39
--- a/sites/www.qmsk.net/__init__.py	Sat Feb 07 16:33:27 2009 +0200
+++ b/sites/www.qmsk.net/__init__.py	Sat Feb 07 16:55:23 2009 +0200
@@ -2,8 +2,9 @@
     The www.qmsk.net site is just a simple site with a filesystem-based URL mapping
 """
 
+from lib import template
 from lib.filesystem.map import FilesystemMapper as _fstree
 
 # global mapper attribute
-handler = _fstree("pages")
+handler = _fstree("pages", template=template.TemplateLoader.load("sites/www.qmsk.net/templates/layout.tmpl"))