Fixing an issue with output parameters that are of type IntPtr
[castle.git] / Tools / NVelocity / test / templates / sample.vm
blob7bec26763a58a793c1a6300f985801489971e852
1 #*
3 @test sample.vm
5 This template is used for Velocity regression testing.
6 If you alter this template make sure you change the
7 corresponding comparison file so that the regression 
8 test doesn't fail incorrectly.
12 <html>
13 <head><title>Sample velocity page</title></head>
14 <body bgcolor="#ffffff">
15 <center>
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>