blob: 1ab56ccdeef94b16e2282349d29edad04ba0fcf9 [file]
{% 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 %}