racket/collects/web-server/template/examples/basic.html
2008-08-27 15:21:01 +00:00

16 lines
311 B
HTML

<html>
<head><title>@title </title></head>
<body>
<table>
@in[c @clients]{
@t{
<tr>
<td>@(client-surname c), @(client-firstname c)</td>
<td><a href="mailto:@(client-email c)">@(client-email c)</a></td>
</tr>
}
}
</table>
</body>
</html>