NIHVIVO-1389 NIHVIVO-1407 NIHVIVO-1437 Significant refactoring of templates both in vitro core and vivo themes to ensure consistent markup with 3 different base templates at play (page.ftl, basicPage.jsp and formPrefix/formSuffix.jsp) Resulted in creating smaller component freemarker templates that could be included by all of the base templates, whether ftl or jsp. This is a temporary compromise while we continue our conversion to Freemarker. The goal was to keep jsp files outside of the theme and working behind the scenes.
This commit is contained in:
parent
f0131adbd0
commit
c9fa835a9e
28 changed files with 210 additions and 978 deletions
|
@ -2,25 +2,29 @@
|
|||
|
||||
<#import "lib-list.ftl" as l>
|
||||
|
||||
<div id="footer">
|
||||
</div> <!-- content -->
|
||||
</div> <!-- contentwrap -->
|
||||
|
||||
<#if urls.bannerImage??>
|
||||
<img class="footerLogo" src="${urls.bannerImage}" alt="${siteTagline!}" />
|
||||
</#if>
|
||||
<div id="footer">
|
||||
<#if urls.bannerImage??>
|
||||
<img class="footerLogo" src="${urls.bannerImage}" alt="${siteTagline!}" />
|
||||
</#if>
|
||||
|
||||
<div class="footerLinks">
|
||||
<ul class="otherNav">
|
||||
<@l.firstLastList>
|
||||
<#include "subMenuLinks.ftl">
|
||||
</@l.firstLastList>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footerLinks">
|
||||
<ul class="otherNav">
|
||||
<@l.firstLastList>
|
||||
<#include "subMenuLinks.ftl">
|
||||
</@l.firstLastList>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<#include "copyright.ftl">
|
||||
<#include "copyright.ftl">
|
||||
|
||||
All Rights Reserved. <a href="${urls.termsOfUse}">Terms of Use</a>
|
||||
All Rights Reserved. <a href="${urls.termsOfUse}">Terms of Use</a>
|
||||
|
||||
<#include "version.ftl">
|
||||
|
||||
</div>
|
||||
<#include "version.ftl">
|
||||
</div>
|
||||
|
||||
</div> <!-- wrap -->
|
||||
|
||||
<#include "scripts.ftl">
|
Loading…
Add table
Add a link
Reference in a new issue