| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 | Metadata-Version: 2.0Name: Jinja2Version: 2.10Summary: A small but fast and easy to use stand-alone template engine written in pure python.Home-page: http://jinja.pocoo.org/Author: Armin RonacherAuthor-email: armin.ronacher@active-4.comLicense: BSDDescription-Content-Type: UNKNOWNPlatform: UNKNOWNClassifier: Development Status :: 5 - Production/StableClassifier: Environment :: Web EnvironmentClassifier: Intended Audience :: DevelopersClassifier: License :: OSI Approved :: BSD LicenseClassifier: Operating System :: OS IndependentClassifier: Programming Language :: PythonClassifier: Programming Language :: Python :: 2Classifier: Programming Language :: Python :: 2.6Classifier: Programming Language :: Python :: 2.7Classifier: Programming Language :: Python :: 3Classifier: Programming Language :: Python :: 3.3Classifier: Programming Language :: Python :: 3.4Classifier: Programming Language :: Python :: 3.5Classifier: Programming Language :: Python :: 3.6Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic ContentClassifier: Topic :: Software Development :: Libraries :: Python ModulesClassifier: Topic :: Text Processing :: Markup :: HTMLRequires-Dist: MarkupSafe (>=0.23)Provides-Extra: i18nRequires-Dist: Babel (>=0.8); extra == 'i18n'Jinja2~~~~~~Jinja2 is a template engine written in pure Python.  It provides a`Django`_ inspired non-XML syntax but supports inline expressions andan optional `sandboxed`_ environment.Nutshell--------Here a small example of a Jinja template::    {% extends 'base.html' %}    {% block title %}Memberlist{% endblock %}    {% block content %}      <ul>      {% for user in users %}        <li><a href="{{ user.url }}">{{ user.username }}</a></li>      {% endfor %}      </ul>    {% endblock %}Philosophy----------Application logic is for the controller but don't try to make the lifefor the template designer too hard by giving him too few functionality.For more informations visit the new `Jinja2 webpage`_ and `documentation`_... _sandboxed: https://en.wikipedia.org/wiki/Sandbox_(computer_security).. _Django: https://www.djangoproject.com/.. _Jinja2 webpage: http://jinja.pocoo.org/.. _documentation: http://jinja.pocoo.org/2/documentation/
 |