Files
2009-11-27 02:05:12 -08:00

11 lines
157 B
Python

import pystache
class Simple(pystache.View):
template_path = 'examples'
def thing(self):
return "pizza"
def blank(self):
pass