bundled/jinja2/examples/basic/test.py @ 07c3f5360b22 flask
Unbundle cherrypy and webpy.
| author | Steve Losh <steve@stevelosh.com> |
|---|---|
| date | Fri, 11 Jun 2010 20:08:34 -0400 |
| parents | 256716e3a3d7 |
| children | (none) |
from jinja2 import Environment from jinja2.loaders import DictLoader env = Environment(loader=DictLoader({ 'child.html': u'''\ {% extends master_layout or 'master.html' %} {% include helpers = 'helpers.html' %} {% macro get_the_answer() %}42{% endmacro %} {% title = 'Hello World' %} {% block body %} {{ get_the_answer() }} {{ helpers.conspirate() }} {% endblock %} ''', 'master.html': u'''\ <!doctype html> <title>{{ title }}</title> {% block body %}{% endblock %} ''', 'helpers.html': u'''\ {% macro conspirate() %}23{% endmacro %} ''' })) tmpl = env.get_template("child.html") print tmpl.render()