Files
pystache/examples/delimiters.py
Chris Wanstrath ab31eadcde delimiter support
2009-11-12 21:58:39 -08:00

14 lines
302 B
Python

import pystache
class Delimiters(pystache.View):
template_path = 'examples'
def first(self):
return "It worked the first time."
def second(self):
return "And it worked the second time."
def third(self):
return "Then, surprisingly, it worked the third time."