Mercurial > genshi > mirror
view examples/bench/django/templates/template.html @ 805:ddb93c60cb8d stable-0.5.x
Block [999] and [1004] from being ported back to stable branch.
author | cmlenz |
---|---|
date | Thu, 05 Mar 2009 10:07:23 +0000 |
parents | e29a94b3ba0c |
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 %}