NIHVIVO-649 Add freemarker template flattening to build. Includes flattening of template directory structure in vivo theme, and renaming of templates as needed for clarity.

This commit is contained in:
rjy7 2010-07-08 17:02:17 +00:00
parent c11d20f2d5
commit fe1c4edd24
6 changed files with 9 additions and 9 deletions

View file

@ -1,6 +1,6 @@
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#import "/lib/list.ftl" as l>
<#import "listMacros.ftl" as l>
<div id="footer">

View file

@ -1,6 +1,6 @@
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#import "/lib/list.ftl" as l>
<#import "listMacros.ftl" as l>
<div id="identity">

View file

@ -1,19 +1,19 @@
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#include "partials/doctype.html">
<#include "doctype.html">
<#include "partials/head.ftl">
<#include "head.ftl">
<body>
<div id="wrap" class="container">
<div id="header">
<#include "partials/identity.ftl">
<#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 "partials/menu.ftl">
<#include "partials/search.ftl">
<#include "menu.ftl">
<#include "search.ftl">
</div> <!-- navAndSearch -->
<#-- <#include "/partials/breadcrumbs.ftl"> -->
@ -30,11 +30,11 @@
</div> <!-- content -->
</div> <!-- contentwrap -->
<#include "partials/footer.ftl">
<#include "footer.ftl">
</div> <!-- wrap -->
<#include "partials/scripts.ftl">
<#include "scripts.ftl">
</body>
</html>