Mercurial > genshi > genshi-test
view examples/bench/django/templates/template.html @ 907:bb813ef5fe25 experimental-inline
inline branch: merged r1129 from trunk.
author | cmlenz |
---|---|
date | Wed, 28 Apr 2010 21:36:59 +0000 |
parents | 0742f421caba |
children |
line wrap: on
line source
{% extends "base.html" %} {% load bench %} {% block content %} <head> <title>{{title|escape}}</title> </head> <body> {% block header %}{% endblock %} <div>{% greeting user %}</div> <div>{% greeting "me" %}</div> <div>{% greeting "world" %}</div> <h2>Loop</h2> {% if items %} <ul> {% for item in items %} <li{% if forloop.last %} class="last"{% endif %}>{{ item|escape }}</li> {% endfor %} </ul> {% endif %} {% block footer %}{% endblock %} </body> {% endblock %}