3.18.3. Templates

<html>
  <head>
    <title>Author Index</title>
  </head>
  <body>
    <ul>
      {% for author in authors %}
        <li><a href="{$ url author author.id %}">{{ author.name }}</a></li>
      {% endfor %}
    </ul>
  </body>
</html>