File: index.html

package info (click to toggle)
libfreemarker-java 2.3.13%2Bdebian1-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 4,296 kB
  • ctags: 5,458
  • sloc: java: 42,735; xml: 1,352; jsp: 28; makefile: 14; sh: 10; python: 10
file content (17 lines) | stat: -rw-r--r-- 372 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
<#assign title="Upper Class Twit of the Year contestant info">
<title>${title}</title>
</head>
<body>
<h1>${title}</h1>
<p>Select a twit:</p>
<form method="GET" action="displayTwitInfo.html">
<select name="twit">
<#list Application.twits?keys as twitName>
<option>${twitName}</option>
</#list>
</select>
<input type="submit" value="Get info">
</body>
</html>