Breadcrumbs template. Copied some templates into vivo-basic theme.

This commit is contained in:
rjy7 2010-05-14 20:50:33 +00:00
parent 138f5bf496
commit 01be04827a
4 changed files with 92 additions and 0 deletions

View file

@ -0,0 +1,32 @@
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#import "/macros/list.ftl" as l>
<div id="identity">
<h1><a title="Home" href="${urls.home}">${siteName}</a></h1>
<#-- RY We will need this in non-NIHVIVO versions
<#if tagline.has_content>
<em>${tagline}</em>
</#if>
-->
<ul id="otherMenu">
<@l.makeList>
<#if loginName??>
<li>
Logged in as <strong>${loginName}</strong> (<a href="${urls.logout}">Log out</a>)
</li>,
<li><a href="${urls.siteAdmin}">Site Admin</a></li>,
<#else>
<li><a title="log in to manage this site" href="${urls.login}">Log in</a></li>,
</#if>
<li><a href="${urls.about}$">About</a></li>,
<#if urls.contact??>
<li><a href="${urls.contact}">Contact Us</a></li>
</#if>
</@l.makeList>
</ul>
</div>