File: sample.vm

package info (click to toggle)
velocity 1.3.1-2
  • links: PTS
  • area: contrib
  • in suites: sarge
  • size: 4,164 kB
  • ctags: 2,922
  • sloc: java: 24,134; xml: 16,911; sh: 99; lisp: 53; makefile: 45
file content (21 lines) | stat: -rw-r--r-- 433 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<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" width="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>