Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 5d5a53cfb1fc82fdbf1e3e9ea3253fa5 > files > 108

python-mako-0.2.4-1mdv2010.0.noarch.rpm

{% 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.last %} class="last"{% endif %}>{{ item }}</li>
      {% endfor %}
    </ul>
  {% endif %}

{% endblock %}