I was also thinking of having some dynamic pages in my static website so maybe HTML is the only solution?
"Django lets you write web apps in Django. TurboGears lets you write web apps in TurboGears. Web.py lets you write web apps in Python."
I have (tiny) improvement to the web.py architecture. Using global variable you can add stuff into webpage with "+=".
class bucket: urls=()
bucket.urls=('/','index')
class index:
def GET(self):
bucket.urls+=('/goto:(.*)','goto')
class goto:
def GET(self,s):
bucket.urls+=('/kartta_(.*)','kartta')
class kartta:
def GET(self,s):
If you want dynamic pages do those in html. No problem.