summaryrefslogtreecommitdiff
path: root/examples/double_section.py
blob: 7085739f0682d1623e5e57262b4080ee1033ec2f (plain)
1
2
3
4
5
6
7
8
9
10
import pystache

class DoubleSection(pystache.View):
    template_path = 'examples'

    def t(self):
        return True

    def two(self):
        return "second"