mirror of
https://github.com/kennethreitz-archive/pystache.git
synced 2026-06-05 23:40:16 +00:00
10 lines
158 B
Python
10 lines
158 B
Python
# encoding: utf-8
|
|
|
|
import pystache
|
|
|
|
class UnicodeOutput(pystache.View):
|
|
template_path = 'examples'
|
|
|
|
def name(self):
|
|
return u'Henri Poincaré'
|