removing page.ftl from vivo-basic theme to minimize confusion

This commit is contained in:
nac26 2010-07-16 12:47:23 +00:00
parent 4ce97268bc
commit bd8b6e8da4

View file

@ -1,58 +0,0 @@
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#include "doctype.html">
<#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" />
<div id="contentwrap">
<div id="content">
<#-- We don't do title here because some pages don't get a title, or it may not be the same as the <title> text.
<h2>${title}</h2> -->
${body}
<#-- <@dumpDataModel /> -->
</div> <!-- content -->
</div> <!-- contentwrap -->
<#include "footer.ftl">
</div> <!-- wrap -->
<#include "scripts.ftl">
</body>
</html>
<#--
Three ways to add a stylesheet:
A. In theme directory:
${stylesheets.addFromTheme("/sample.css");
${stylesheets.add(themeStylesheetDir + "/sample.css")}
B. Any location
${stylesheets.add("/edit/forms/css/sample.css)"}
To add a script:
A. In theme directory:
${scripts.addFromTheme("/sample.js");
B. Any location
${scripts("/edit/forms/js/sample.js)"}
-->