> Is there a Grok way to share a common template layout? One thing you can do is to use the grok.templatedir(...) directive on a module level. So say you have a module 'bar.py' and a template directory called 'foo' with and 'index.pt' in it, in bar.py you can say: import grok grok.templatedir('foo') ... -- Jan-Wijbrand Kolman