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
|
@ -17,7 +17,7 @@
|
|||
<ul id="browse-classgroups" role="list">
|
||||
<#list vclassGroupList as group>
|
||||
<#if (group.individualCount > 0)>
|
||||
<li role="listitem"><a href="${urls.currentPage}?classgroupUri=${group.uri?url}">${group.displayName?capitalize} <span class="count-classes">(${group.individualCount})</span></a></li>
|
||||
<li role="listitem"><a href="${urls.currentPage}?classgroupUri=${group.uri?url}" title="group name">${group.displayName?capitalize} <span class="count-classes">(${group.individualCount})</span></a></li>
|
||||
</#if>
|
||||
</#list>
|
||||
</ul>
|
||||
|
@ -35,7 +35,7 @@
|
|||
<ul id="classes-in-classgroup" role="list">
|
||||
<#list classes as class>
|
||||
<#if (class.individualCount > 0)>
|
||||
<li role="listitem"><a href="${urls.currentPage}?classgroupUri=${classGroup.uri?url}&vclassUri=${class.uri?url}">${class.name} <span class="count-individuals"> (${class.individualCount})</span></a></li>
|
||||
<li role="listitem"><a href="${urls.currentPage}?classgroupUri=${classGroup.uri?url}&vclassUri=${class.uri?url}" title="class name">${class.name} <span class="count-individuals"> (${class.individualCount})</span></a></li>
|
||||
</#if>
|
||||
</#list>
|
||||
</ul>
|
||||
|
@ -54,7 +54,7 @@
|
|||
|
||||
<ul>
|
||||
<#list individualsInClass as ind>
|
||||
<li><a href="${urls.base}/individual?uri=${ind.uri?url}">${ind.name}</a></li>
|
||||
<li><a href="${urls.base}/individual?uri=${ind.uri?url}" title="individual name">${ind.name}</a></li>
|
||||
</#list>
|
||||
</section>
|
||||
</#macro>
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<noscript>
|
||||
<section id="error-alert">
|
||||
<img src="${urls.images}/iconAlertBig.png" alt="Alert Icon"/>
|
||||
<p>In order to edit content, you'll need to enable JavaScript. Here are the <a href="http://www.enable-javascript.com">instructions for enabling JavaScript in your web browser</a>.</p>
|
||||
<p>In order to edit content, you'll need to enable JavaScript. Here are the <a href="http://www.enable-javascript.com" title="java script instructions">instructions for enabling JavaScript in your web browser</a>.</p>
|
||||
</section>
|
||||
</noscript>
|
||||
</#if>
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
<form role="form" id="login-form" action="${formAction}" method="post" name="login-form" />
|
||||
<#if externalAuthUrl??>
|
||||
<p class="external-auth"><a class="blue button" href="${externalAuthUrl}">${externalAuthName}</a></p>
|
||||
<p class="external-auth"><a class="blue button" href="${externalAuthUrl}" title="external authentication name">${externalAuthName}</a></p>
|
||||
<p class="or-auth">or</p>
|
||||
|
||||
<h3 class="internal-auth" >Log in using your ${siteName} account</h3>
|
||||
|
@ -57,8 +57,8 @@
|
|||
<input class="checkbox-remember-me" name="remember-me" type="checkbox" value="" />
|
||||
<label class="label-remember-me" for="remember-me">Remember me</label> -->
|
||||
<#-- mb863: forgot password and request an account won't be part of VIVO r1.2
|
||||
<p class="forgot-password"><a href="#">Forgot your password?</a></p>
|
||||
<p class="request-account"><a class="blue button" href="#">Request an account</a> </p> -->
|
||||
<p class="forgot-password"><a href="#" title="forgot password">Forgot your password?</a></p>
|
||||
<p class="request-account"><a class="blue button" href="#" title="request an account">Request an account</a> </p> -->
|
||||
</form>
|
||||
|
||||
</section><!-- #log-in -->
|
||||
|
@ -83,7 +83,7 @@
|
|||
<label for="confirmPassword">Confirm Password</label>
|
||||
<input id="confirmPassword" name="confirmPassword" class="text-field" type="password" required />
|
||||
|
||||
<p class="submit-password"><input name="passwordChangeForm" class="green button" type="submit" value="Log in"/> <span class="or">or <a class="cancel" href="${cancelUrl}">Cancel</a></span></p>
|
||||
<p class="submit-password"><input name="passwordChangeForm" class="green button" type="submit" value="Log in"/> <span class="or">or <a class="cancel" href="${cancelUrl}" title="cancel">Cancel</a></span></p>
|
||||
</form>
|
||||
</section>
|
||||
</#macro>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue