Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > fac195bf96b9a69a0644d45f5583eb35 > files > 208

python3-genshi-0.7.1-1.mga7.noarch.rpm

{% 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 %}