28 lines
699 B
Racket
28 lines
699 B
Racket
#lang web-server/template
|
|
<html>
|
|
<head><title>@$title </title></head>
|
|
<body>
|
|
<table>
|
|
@in[c $clients]{
|
|
<tr>
|
|
<td>@($client-surname c), @($client-firstname c)
|
|
<td><a href="mailto:@($client-email c)">@($client-email c)</a></td>
|
|
</tr>
|
|
}
|
|
</table>
|
|
</body>
|
|
</html>
|
|
|
|
@; Example:
|
|
@;{
|
|
(template #:title "Title"
|
|
#:clients
|
|
`(["First1" "Last1" "email1"]
|
|
["First2" "Last2" "email2"]
|
|
["First3" "Last3" "email3"]
|
|
["First4" "Last4" "email4"]
|
|
["First5" "Last5" "email5"])
|
|
#:client-surname second
|
|
#:client-firstname first
|
|
#:client-email third)
|
|
} |