2010-11-18 18:52:26 +00:00
|
|
|
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
|
|
|
|
|
|
|
<#include "doctype.html">
|
|
|
|
|
|
|
|
${stylesheets.addFromTheme("/css/screen.css")}
|
|
|
|
<#-- print stylesheet commented out for now until we can add a media parameter to stylesheets.add method -->
|
|
|
|
<#-- ${stylesheets.addFromTheme("/css/print.css")} -->
|
|
|
|
|
|
|
|
<#include "head.ftl">
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="wrap" class="container">
|
|
|
|
<div id="header">
|
|
|
|
|
|
|
|
<#include "identity.ftl">
|
|
|
|
|
|
|
|
<#-- Note to UI team: do not change this div without also making the corresponding change in menu.jsp -->
|
|
|
|
<div id="navAndSearch" class="block">
|
|
|
|
<#include "menu.ftl">
|
|
|
|
<#include "search.ftl">
|
|
|
|
</div> <!-- navAndSearch -->
|
|
|
|
|
|
|
|
<#include "breadcrumbs.ftl">
|
|
|
|
</div> <!-- header -->
|
|
|
|
|
|
|
|
<hr class="hidden" />
|
|
|
|
|
2010-11-24 18:26:04 +00:00
|
|
|
<div id="contentwrap">
|
2010-11-18 18:52:26 +00:00
|
|
|
<#if flash?has_content>
|
2010-11-24 18:26:04 +00:00
|
|
|
<section id="flash-message" role="alert">
|
2010-11-18 18:52:26 +00:00
|
|
|
${flash}
|
2010-11-24 18:26:04 +00:00
|
|
|
</section>
|
|
|
|
</#if>
|
2010-11-18 18:52:26 +00:00
|
|
|
|
2010-11-24 18:26:04 +00:00
|
|
|
<div id="content">
|
2010-11-18 18:52:26 +00:00
|
|
|
${body}
|
|
|
|
</div> <!-- content -->
|
|
|
|
</div> <!-- contentwrap -->
|
|
|
|
|
|
|
|
<#include "footer.ftl">
|
|
|
|
|
|
|
|
</div> <!-- wrap -->
|
|
|
|
|
|
|
|
<#include "scripts.ftl">
|
|
|
|
</body>
|
|
|
|
</html>
|