<html>
<head><title>Exemple Velocity</title></head>
<body>

<h1>Exemple de boucle Velocity</h1>
<table border=1>

#line( "Prnom" "Nom" "Tlphone" )
#foreach( $client in $clientlist )
#line( $client.firstname $client.lastname $client.phone )
#end

</table>
</center>
</html>

#macro( line $fn $ln $ph )
<tr>

<td>$fn</td>
<td>$ln</td>
<td>$ph</td>
</tr>
#end
