Files
pystache/examples/double_section.py

11 lines
178 B
Python

import pystache
class DoubleSection(pystache.View):
template_path = 'examples'
def t(self, text):
return text
def two(self, text):
return "second"