blob: a1b60bd520a8cde207c247cd2b05a564bd935e30 [file] [log] [blame]
<html>
<head><title>Sample velocity page</title></head>
<body bgcolor="#ffffff">
<center>
<h2>Hello from velocity!</h2>
<i>Here's the list of people</i>
<table cellspacing="0" cellpadding="5" widht="100%">
<tr>
<td bgcolor="#eeeeee" align="center">
Names
</td>
</tr>
#foreach $name in $theList
<tr>
<td bgcolor="#eeeeee">$name</td>
</tr>
#end
</table>
</center>
</html>