Skip to content

carldunham/jinja2

This branch is 1723 commits behind pallets/jinja:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

27ffd01 · Jan 10, 2014
May 6, 2008
May 20, 2013
Jul 7, 2011
May 18, 2013
Jan 10, 2014
Aug 7, 2013
May 20, 2013
May 31, 2013
May 18, 2013
Jan 10, 2014
Jan 6, 2009
May 20, 2013
May 20, 2013
Oct 17, 2010
May 24, 2011
May 20, 2013
Sep 13, 2009
May 22, 2013
May 20, 2013

Repository files navigation

Jinja2

Jinja2 is a template engine written in pure Python. It provides a Django inspired non-XML syntax but supports inline expressions and an 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 life for the template designer too hard by giving him too few functionality.

For more informations visit the new Jinja2 webpage and documentation.

The Jinja2 tip is installable via easy_install with easy_install Jinja2==dev.

About

The Jinja2 template engine

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 98.6%
  • Other 1.4%