File: common.ftl

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 (21 lines) | stat: -rw-r--r-- 571 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<#macro page title>
  <html>
  <head>
    <title>FreeMarker Struts Example - ${title?html}</title>
    <meta http-equiv="Content-type" content="text/html; charset=ISO-8859-1">
  </head>
  <body>
    <h1>${title?html}</h1>
    <hr>
    <#nested>
    <hr>
    <table border="0" cellspacing=0 cellpadding=0 width="100%">
      <tr valign="middle">
        <td align="left">
          <i>FreeMarker Struts Example</i>
        <td align="right">
          <a href="http://freemarker.org"><img src="poweredby_ffffff.png" border=0></a>
    </table>
  </body>
  </html>
</#macro>