1.. _api.webapp2_extras.jinja2:
2
3Jinja2
4======
5.. module:: webapp2_extras.jinja2
6
7This module provides `Jinja2`_ template support for webapp2.
8
9To use it, you must add the ``jinja2`` package to your application
10directory (for App Engine) or install it in your virtual environment
11(for other servers).
12
13You can download ``jinja2`` from PyPi:
14
15    http://pypi.python.org/pypi/Jinja2
16
17Learn more about Jinja2:
18
19    http://jinja.pocoo.org/
20
21.. autodata:: default_config
22
23.. autoclass:: Jinja2
24   :members: __init__, render_template, get_template_attribute
25
26.. autofunction:: get_jinja2
27.. autofunction:: set_jinja2
28
29
30.. _Jinja2: http://jinja.pocoo.org/
31