Mercurial > genshi > genshi-test
view examples/bench/django/templates/template.html @ 231:1b0a4bd6fe42
typo
author | cmlenz |
---|---|
date | Mon, 11 Sep 2006 15:14:20 +0000 |
parents | 37f128d2d7f4 |
children | 8dd0d34a9fb7 |
line wrap: on
line source
{% extends "base.html" %} {% load bench %} <head> <title>${title|escape}</title> </head> {% block body %} <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.islast %} class="last"{% endif %}>{{ item|escape }}</li> {% endfor %} </ul> {% endif %} {% endblock %}