Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
6 | Andrea | 1 | <#macro myLayout tipoMenu="menu" title="SRM sito di amministrazione" scripts=["js/common.js"] iCss=["css/srm.css"] iCssStampa=["css/srm_print.css"] div="content-left"> |
2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//IT" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
||
3 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="it" lang="it"> |
||
4 | |||
5 | <head> |
||
6 | <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> |
||
7 | <#list iCss as unCss> |
||
8 | <link rel="stylesheet" type="text/css" href="${unCss}" media="screen"> |
||
9 | </#list> |
||
10 | <#list iCssStampa as unCssStampa> |
||
11 | <link rel="stylesheet" type="text/css" href="${unCssStampa}" media="print"> |
||
12 | </#list> |
||
13 | <#list scripts as script> |
||
14 | <script type="text/javascript" charset="utf-8" src="${script}"></script> |
||
15 | </#list> |
||
16 | <title>${title}</title> |
||
17 | </head> |
||
18 | |||
19 | <body> |
||
20 | <div id="wrapper"> |
||
21 | <div id="header"> <#include "header.ftl"/> </div> |
||
22 | <div id="content"> |
||
23 | <div id="${div}" class="menu"> </div> |
||
24 | <#nested/> |
||
25 | </div> |
||
26 | <div id="footer"> <#include "footer.ftl"/> </div> |
||
27 | <div id="copyright"></div> |
||
28 | </div> |
||
29 | </body> |
||
30 | </html> |
||
31 | </#macro> |