Greetings.
I am learning zope and have made my first working product to track people, 
however I want to use PageTemplates instead of DTML. Here is an example in my 
code:
class Person:
	...
	...
	index_html = DTMLFile('www/index_html', globals())
	...
	...
right there, I want to use a page template for index_html instead of a DTML 
file, how can I do that?
Thanks,
Jeremy