16 lines
311 B
HTML
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>
|