Committing files to VIVO. vivo-basic wasn't rendering property. Created page.ftl to property get the right style files.
This commit is contained in:
parent
1f01b95140
commit
b974e37445
5 changed files with 56 additions and 10 deletions
|
@ -813,4 +813,8 @@ font-size:0.9em;
|
|||
.contactUsReturnHome{
|
||||
margin-top:30px;
|
||||
margin-bottom:250px;
|
||||
}
|
||||
/* This css rules will override the one in individual.css */
|
||||
.green {
|
||||
color:#000 !important;
|
||||
}
|
46
themes/vivo-basic/templates/page.ftl
Normal file
46
themes/vivo-basic/templates/page.ftl
Normal file
|
@ -0,0 +1,46 @@
|
|||
<#-- $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" />
|
||||
|
||||
<div id="contentwrap">
|
||||
<#if flash?has_content>
|
||||
<div id="flash-message">
|
||||
${flash}
|
||||
</div>
|
||||
</#if>
|
||||
|
||||
<div id="content">
|
||||
${body}
|
||||
</div> <!-- content -->
|
||||
</div> <!-- contentwrap -->
|
||||
|
||||
<#include "footer.ftl">
|
||||
|
||||
</div> <!-- wrap -->
|
||||
|
||||
<#include "scripts.ftl">
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue