NIHVIVO-2595 adding title attribute to anchor tags

This commit is contained in:
tworrall 2011-11-30 21:25:07 +00:00
parent 89e55aafde
commit b0fc727218
53 changed files with 109 additions and 109 deletions

View file

@ -7,25 +7,25 @@
<#if copyright??>
<small>&copy;${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>
| <a class="terms" href="${urls.termsOfUse}">Terms of Use</a></small> |
| <a class="terms" href="${urls.termsOfUse}" title="terms of use">Terms of Use</a></small> |
</#if>
Powered by <a class="powered-by-vitro" href="http://vitro.sourceforge.net"><strong>Vitro</strong></a>
<#if user.hasRevisionInfoAccess>
| Version <a href="${version.moreInfoUrl}">${version.label}</a>
| Version <a href="${version.moreInfoUrl}" title="version">${version.label}</a>
</#if>
</p>
<nav role="navigation">
<ul id="footer-nav" role="list">
<li role="listitem"><a href="${urls.about}">About</a></li>
<li role="listitem"><a href="${urls.about}" title="about">About</a></li>
<#if urls.contact??>
<li role="listitem"><a href="${urls.contact}">Contact Us</a></li>
<li role="listitem"><a href="${urls.contact}" title="contact us">Contact Us</a></li>
</#if>
<li role="listitem"><a href="http://www.vivoweb.org/support" target="blank">Support</a></li>
<li role="listitem"><a href="http://www.vivoweb.org/support" target="blank" title="support">Support</a></li>
</ul>
</nav>
</footer>

View file

@ -9,19 +9,19 @@
<nav role="navigation">
<ul id="header-nav" role="list">
<li role="listitem"><a href="${urls.index}">Index</a></li>
<li role="listitem"><a href="${urls.index}" title="index">Index</a></li>
<#if user.loggedIn>
<#if user.hasSiteAdminAccess>
<li role="listitem"><a href="${urls.siteAdmin}">Site Admin</a></li>
<li role="listitem"><a href="${urls.siteAdmin}" title="site admin">Site Admin</a></li>
</#if>
<li>
<ul class="dropdown">
<li id="user-menu"><a href="#">${user.loginName}</a>
<li id="user-menu"><a href="#" title="user">${user.loginName}</a>
<ul class="sub_menu">
<#if urls.myAccount??>
<li role="listitem"><a href="${urls.myAccount}">My account</a></li>
<li role="listitem"><a href="${urls.myAccount}" title="my account">My account</a></li>
</#if>
<li role="listitem"><a href="${urls.logout}">Log out</a></li>
<li role="listitem"><a href="${urls.logout}" title="log out">Log out</a></li>
</ul>
</li>
</ul>

View file

@ -23,6 +23,6 @@
<!--[if lte IE 8]>
<noscript>
<p class="ie-alert">This site uses HTML elements that are not recognized by Internet Explorer 8 and below in the absence of JavaScript. As a result, the site will not be rendered appropriately. To correct this, please either enable JavaScript, upgrade to Internet Explorer 9, or use another browser. Here are the <a href="http://www.enable-javascript.com">instructions for enabling JavaScript in your web browser</a>.</p>
<p class="ie-alert">This site uses HTML elements that are not recognized by Internet Explorer 8 and below in the absence of JavaScript. As a result, the site will not be rendered appropriately. To correct this, please either enable JavaScript, upgrade to Internet Explorer 9, or use another browser. Here are the <a href="http://www.enable-javascript.com" title="javascript instructions">instructions for enabling JavaScript in your web browser</a>.</p>
</noscript>
<![endif]-->