Complete default individual list view in FreeMarker
This commit is contained in:
parent
c1b3cf2894
commit
0c588768db
3 changed files with 18 additions and 4 deletions
|
@ -339,6 +339,20 @@ ul.tabEntities a.externalLink,
|
|||
font-weight: normal;
|
||||
}
|
||||
|
||||
.individualList ul.individualData {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.individualList ul.individualData li {
|
||||
display: inline;
|
||||
border-right: solid 1px #a0a0a0;
|
||||
padding-right: .3em;
|
||||
}
|
||||
|
||||
.individualList ul.individualData li.last {
|
||||
border: none;
|
||||
}
|
||||
|
||||
div.blurb { color: #999; }
|
||||
|
||||
div.blurb a { font-weight: normal; }
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
-->
|
||||
|
||||
<ul id="otherMenu">
|
||||
<@l.makeList>
|
||||
<@l.firstLastList>
|
||||
<#if loginName??>
|
||||
<li>
|
||||
Logged in as <strong>${loginName}</strong> (<a href="${urls.logout}">Log out</a>)
|
||||
|
@ -27,6 +27,6 @@
|
|||
<#if urls.contact??>
|
||||
<li><a href="${urls.contact}">Contact Us</a></li>
|
||||
</#if>
|
||||
</@l.makeList>
|
||||
</@l.firstLastList>
|
||||
</ul>
|
||||
</div>
|
Loading…
Add table
Reference in a new issue