summaryrefslogtreecommitdiff
path: root/tests/examplefiles/cheetah_example.html
blob: e2a0f4779e806bfe17160697fca9f5c69046f3d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<html>
  <head><title>$title</title></head>
  <body>
    <table>
      #for $client in $clients
      <tr>
        <td>$client.surname, $client.firstname</td>
        <td><a href="mailto:$client.email">$client.email</a></td>
      </tr>
      #end for
    </table>
  </body>
</html>