NIHVIVO-2595 adding title attribute to anchor tags
This commit is contained in:
parent
89e55aafde
commit
b0fc727218
53 changed files with 109 additions and 109 deletions
|
@ -4,7 +4,7 @@
|
|||
<div class="copyright">
|
||||
©${copyright.year?c}
|
||||
<#if copyright.url??>
|
||||
<a href="${copyright.url}">${copyright.text}</a>
|
||||
<a href="${copyright.url}" title="copyright">${copyright.text}</a>
|
||||
<#else>
|
||||
${copyright.text}
|
||||
</#if>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
<#include "copyright.ftl">
|
||||
|
||||
All Rights Reserved. <a href="${urls.termsOfUse}">Terms of Use</a>
|
||||
All Rights Reserved. <a href="${urls.termsOfUse}" title="terms of use">Terms of Use</a>
|
||||
|
||||
<#include "version.ftl">
|
||||
</div>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
||||
|
||||
<header id="branding" role="banner">
|
||||
<h1 class="vivo-logo"><a href="${urls.home}"><span class="displace">${siteName}</span></a></h1>
|
||||
<h1 class="vivo-logo"><a href="${urls.home}" title="site name"><span class="displace">${siteName}</span></a></h1>
|
||||
<#if siteTagline?has_content>
|
||||
<em>${siteTagline}</em>
|
||||
</#if>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<nav role="navigation">
|
||||
<ul id="main-nav" role="list">
|
||||
<#list menu.items as item>
|
||||
<li role="listitem"><a href="${item.url}" <#if item.active> class="selected" </#if>>${item.linkText}</a></li>
|
||||
<li role="listitem"><a href="${item.url}" <#if item.active> class="selected" </#if> title="menu item">${item.linkText}</a></li>
|
||||
</#list>
|
||||
</ul>
|
||||
</nav>
|
||||
|
|
|
@ -6,5 +6,5 @@
|
|||
<#if urls.contact??>
|
||||
<li><a href="${urls.contact}">Contact Us</a></li>
|
||||
</#if>
|
||||
<li><a href="http://www.vivoweb.org/support">Support</a></li>
|
||||
<li><a href="${urls.index}">Index</a></li>
|
||||
<li><a href="http://www.vivoweb.org/support" title="support">Support</a></li>
|
||||
<li><a href="${urls.index}" title="index">Index</a></li>
|
|
@ -5,6 +5,6 @@
|
|||
<#-- Only show version info if user has access -->
|
||||
<#if user.hasRevisionInfoAccess>
|
||||
<div id="revision">
|
||||
Version <a href="${version.moreInfoUrl}">${version.label}</a>
|
||||
Version <a href="${version.moreInfoUrl}" title="version">${version.label}</a>
|
||||
</div>
|
||||
</#if>
|
Loading…
Add table
Add a link
Reference in a new issue