• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#*
2
3@test sample.vm
4
5This template is used for Velocity regression testing.
6If you alter this template make sure you change the
7corresponding comparison file so that the regression
8test doesn't fail incorrectly.
9
10*#
11
12<html>
13<head><title>Sample velocity page</title></head>
14<body bgcolor="#ffffff">
15<center>
16
17<h2>Hello from velocity!</h2>
18<i>Here's the list of people</i>
19<table cellspacing="0" cellpadding="5" widht="100%">
20    <tr>
21        <td bgcolor="#eeeeee" align="center">
22            Names
23        </td>
24    </tr>
25    #foreach ($name in $provider.Customers)
26    <tr>
27        <td bgcolor="#eeeeee">$name</td>
28    </tr>
29    #end
30</table>
31</center>
32</html>
33