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:
parent
c11d20f2d5
commit
fe1c4edd24
6 changed files with 9 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
||||||
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
<#-- $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">
|
<div id="footer">
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
<#-- $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">
|
<div id="identity">
|
||||||
|
|
|
@ -1,19 +1,19 @@
|
||||||
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
<#-- $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>
|
<body>
|
||||||
<div id="wrap" class="container">
|
<div id="wrap" class="container">
|
||||||
<div id="header">
|
<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 -->
|
<#-- Note to UI team: do not change this div without also making the corresponding change in menu.jsp -->
|
||||||
<div id="navAndSearch" class="block">
|
<div id="navAndSearch" class="block">
|
||||||
<#include "partials/menu.ftl">
|
<#include "menu.ftl">
|
||||||
<#include "partials/search.ftl">
|
<#include "search.ftl">
|
||||||
</div> <!-- navAndSearch -->
|
</div> <!-- navAndSearch -->
|
||||||
|
|
||||||
<#-- <#include "/partials/breadcrumbs.ftl"> -->
|
<#-- <#include "/partials/breadcrumbs.ftl"> -->
|
||||||
|
@ -30,11 +30,11 @@
|
||||||
</div> <!-- content -->
|
</div> <!-- content -->
|
||||||
</div> <!-- contentwrap -->
|
</div> <!-- contentwrap -->
|
||||||
|
|
||||||
<#include "partials/footer.ftl">
|
<#include "footer.ftl">
|
||||||
|
|
||||||
</div> <!-- wrap -->
|
</div> <!-- wrap -->
|
||||||
|
|
||||||
<#include "partials/scripts.ftl">
|
<#include "scripts.ftl">
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Add table
Reference in a new issue