mirror of
https://github.com/kennethreitz-archive/pystache.git
synced 2026-06-05 23:40:16 +00:00
14 lines
302 B
Python
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."
|