14 lines
290 B
HTML
14 lines
290 B
HTML
<html>
|
|
<head><title>@title </title></head>
|
|
<body>
|
|
<table>
|
|
@in[c clients]{
|
|
<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>
|