racket/collects/web-server/template/examples/basic.html
Jay McCarthy 2e8d5ed971 Re Eli
svn: r11445
2008-08-26 23:27:06 +00:00

16 lines
321 B
HTML

<html>
<head><title>@title </title></head>
<body>
<table>
@for/list[([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>