Complete default individual list view in FreeMarker

This commit is contained in:
rjy7 2010-06-02 17:06:55 +00:00
parent b3ddf9e822
commit 037ff45736
9 changed files with 78 additions and 36 deletions

View file

@ -10,12 +10,12 @@
<div class="footerLinks">
<ul class="otherNav">
<@l.makeList>
<@l.firstLastList>
<li><a href="${urls.about}" title="more about this web site">About</a></li>,
<#if urls.contact??>
<li><a href="${urls.contact}" title="feedback form">Contact Us</a></li>
</#if>
</@l.makeList>
</@l.firstLastList>
</ul>
</div>

View file

@ -11,7 +11,7 @@
</#if>
<ul id="otherMenu">
<@l.makeList>
<@l.firstLastList>
<#if loginName??>
<li>
Logged in as <strong>${loginName}</strong> (<a href="${urls.logout}">Log out</a>)
@ -25,6 +25,6 @@
<#if urls.contact??>
<li><a href="${urls.contact}">Contact Us</a></li>
</#if>
</@l.makeList>
</@l.firstLastList>
</ul>
</div>