2010-05-11 20:37:48 +00:00
|
|
|
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
|
|
|
|
2010-07-08 17:10:31 +00:00
|
|
|
<#include "doctype.html">
|
2010-05-11 20:37:48 +00:00
|
|
|
|
2010-07-08 17:10:31 +00:00
|
|
|
<#include "head.ftl">
|
2010-05-11 20:37:48 +00:00
|
|
|
|
2011-02-08 21:07:16 +00:00
|
|
|
<body class="${bodyClasses!}">
|
2010-05-11 20:37:48 +00:00
|
|
|
<div id="wrap" class="container">
|
|
|
|
<div id="header">
|
|
|
|
|
2010-07-08 17:10:31 +00:00
|
|
|
<#include "identity.ftl">
|
2010-05-11 20:37:48 +00:00
|
|
|
|
2010-05-14 20:50:33 +00:00
|
|
|
<#-- Note to UI team: do not change this div without also making the corresponding change in menu.jsp -->
|
2010-05-11 20:37:48 +00:00
|
|
|
<div id="navAndSearch" class="block">
|
2010-07-08 17:10:31 +00:00
|
|
|
<#include "menu.ftl">
|
|
|
|
<#include "search.ftl">
|
2010-05-11 20:37:48 +00:00
|
|
|
</div> <!-- navAndSearch -->
|
2010-05-14 20:50:33 +00:00
|
|
|
|
2010-07-08 17:10:31 +00:00
|
|
|
<#include "breadcrumbs.ftl">
|
2010-05-11 20:37:48 +00:00
|
|
|
</div> <!-- header -->
|
|
|
|
|
|
|
|
<hr class="hidden" />
|
|
|
|
|
2010-11-16 19:09:03 +00:00
|
|
|
<div id="contentwrap">
|
|
|
|
<#if flash?has_content>
|
|
|
|
<div id="flash-message">
|
|
|
|
${flash}
|
|
|
|
</div>
|
|
|
|
</#if>
|
|
|
|
|
2010-10-27 01:27:52 +00:00
|
|
|
<div id="content">
|
2010-10-29 16:44:29 +00:00
|
|
|
${body}
|
2010-05-11 20:37:48 +00:00
|
|
|
</div> <!-- content -->
|
|
|
|
</div> <!-- contentwrap -->
|
|
|
|
|
2010-07-08 17:10:31 +00:00
|
|
|
<#include "footer.ftl">
|
2010-05-11 20:37:48 +00:00
|
|
|
|
2010-05-19 19:50:54 +00:00
|
|
|
</div> <!-- wrap -->
|
|
|
|
|
2010-07-08 17:10:31 +00:00
|
|
|
<#include "scripts.ftl">
|
2010-05-11 20:37:48 +00:00
|
|
|
</body>
|
|
|
|
</html>
|
2010-06-25 17:44:50 +00:00
|
|
|
|
|
|
|
<#--
|
|
|
|
Three ways to add a stylesheet:
|
|
|
|
|
|
|
|
A. In theme directory:
|
2010-10-01 14:55:03 +00:00
|
|
|
${stylesheets.addFromTheme("/css/sample.css")}
|
|
|
|
${stylesheets.add(themeDir + "/css/sample.css")}
|
2010-06-25 17:44:50 +00:00
|
|
|
|
|
|
|
B. Any location
|
|
|
|
${stylesheets.add("/edit/forms/css/sample.css)"}
|
|
|
|
|
|
|
|
To add a script:
|
|
|
|
|
|
|
|
A. In theme directory:
|
2010-10-01 14:55:03 +00:00
|
|
|
${scripts.addFromTheme("/css/sample.js")}
|
2010-06-25 17:44:50 +00:00
|
|
|
|
|
|
|
B. Any location
|
|
|
|
${scripts("/edit/forms/js/sample.js)"}
|
|
|
|
-->
|