Files
pystache/examples/simple.py

11 lines
169 B
Python

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