klein/index.html

10 lines
No EOL
272 B
HTML

<h1>{{ pagename|title }}</h1>
<ul>
{% for author in authors %}
<li {% if loop.first %}class="first"{% endif %}{% if loop.last %}class="last"{% endif %}>
<div class="name">{{ author.name }}</div>
<div class="age">{{ author.age }}</div>
</li>
{% endfor %}
</ul>