racket/collects/web-server/template/examples/basic.html
Jay McCarthy a01728e63a Templates
svn: r12500
2008-11-18 22:03:44 +00:00

16 lines
314 B
HTML

<html>
<head><title>@title </title></head>
<body>
<table>
@in[c @clients]{
@list{
<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>