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
|
@ -35,11 +35,11 @@
|
|||
accounts per page <input type="submit" name="accounts-per-page" value="Update" /> |
|
||||
|
||||
<#if page.previous?has_content>
|
||||
<a href="${formUrls.list}?accountsPerPage=${accountsPerPage}&pageIndex=${page.previous}">Previous</a> <!-- only present if current page is not 1.-->
|
||||
<a href="${formUrls.list}?accountsPerPage=${accountsPerPage}&pageIndex=${page.previous}" title="previous">Previous</a> <!-- only present if current page is not 1.-->
|
||||
</#if>
|
||||
${page.current} of ${page.last}
|
||||
<#if page.next?has_content>
|
||||
<a href="${formUrls.list}?accountsPerPage=${accountsPerPage}&pageIndex=${page.next}">Next</a><!-- only present if current page is not last page.-->
|
||||
<a href="${formUrls.list}?accountsPerPage=${accountsPerPage}&pageIndex=${page.next}" title="next">Next</a><!-- only present if current page is not last page.-->
|
||||
</#if>
|
||||
</nav>
|
||||
</section>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
<#import "lib-properties.ftl" as p>
|
||||
|
||||
<a href="${individual.profileUrl}">${individual.name}</a>
|
||||
<a href="${individual.profileUrl}" title="name">${individual.name}</a>
|
||||
|
||||
<@p.mostSpecificTypes individual />
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
<#if individual.showAdminPanel>
|
||||
<section id="admin">
|
||||
<h3>Admin Panel</h3><a class="edit-individual" href="${individual.controlPanelUrl()}">Edit this individual</a>
|
||||
<h3>Admin Panel</h3><a class="edit-individual" href="${individual.controlPanelUrl()}" title="edit this individual">Edit this individual</a>
|
||||
|
||||
<section id = "verbose-mode">
|
||||
<#if verbosePropertySwitch?has_content>
|
||||
|
@ -14,10 +14,10 @@
|
|||
<#assign currentValue = verbosePropertySwitch.currentValue?string("on", "off")>
|
||||
<#assign newValue = verbosePropertySwitch.currentValue?string("off", "on")>
|
||||
<span>Verbose property display is <b>${currentValue}</b> | </span>
|
||||
<a id="${anchorId}" class="verbose-toggle small" href="${verbosePropertySwitch.url}#${anchorId}">Turn ${newValue}</a>
|
||||
<a id="${anchorId}" class="verbose-toggle small" href="${verbosePropertySwitch.url}#${anchorId}" title="verbose control">Turn ${newValue}</a>
|
||||
</#if>
|
||||
</section>
|
||||
|
||||
<p class="uri-link">Resource URI: <a href="${individual.uri}" target="_blank">${individual.uri}</a></p>
|
||||
<p class="uri-link">Resource URI: <a href="${individual.uri}" target="_blank" title="resource uri">${individual.uri}</a></p>
|
||||
</section>
|
||||
</#if>
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
<section class="property-group" role="region">
|
||||
<nav class="scroll-up" role="navigation">
|
||||
<a href="#branding">
|
||||
<a href="#branding" title="scroll up">
|
||||
<img src="${urls.images}/individual/scroll-up.gif" alt="scroll to property group menus" />
|
||||
</a>
|
||||
</nav>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<#if groupname?has_content>
|
||||
<#-- capitalize will capitalize each word in the name; cap_first only the first. We may need a custom
|
||||
function to capitalize all except function words. -->
|
||||
<li role="listitem"><a href="#${groupname}">${groupname?capitalize}</a></li>
|
||||
<li role="listitem"><a href="#${groupname}" title="group name">${groupname?capitalize}</a></li>
|
||||
</#if>
|
||||
</#list>
|
||||
</ul>
|
||||
|
|
|
@ -6,4 +6,4 @@
|
|||
is also used to generate the property statement during a deletion.
|
||||
-->
|
||||
|
||||
<a href="${profileUrl(statement.object)}">${statement.label!statement.localName!}</a>
|
||||
<a href="${profileUrl(statement.object)}" title="name">${statement.label!statement.localName!}</a>
|
||||
|
|
|
@ -2,4 +2,4 @@
|
|||
|
||||
<#-- Simple object property statement template -->
|
||||
|
||||
<a href="${profileUrl(statement.object)}">${statement.name!}</a>
|
||||
<a href="${profileUrl(statement.object)}" title="name">${statement.name!}</a>
|
||||
|
|
|
@ -4,6 +4,6 @@
|
|||
|
||||
<#import "lib-properties.ftl" as p>
|
||||
|
||||
<a href="${individual.profileUrl}">${individual.name}</a>
|
||||
<a href="${individual.profileUrl}" title="name">${individual.name}</a>
|
||||
|
||||
<@p.mostSpecificTypes individual />
|
|
@ -24,7 +24,7 @@
|
|||
<h3 class="selected-class"></h3>
|
||||
<#assign alphabet = ["A", "B", "C", "D", "E", "F", "G" "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] />
|
||||
<ul id="alpha-browse-individuals">
|
||||
<li><a href="#" class="selected" data-alpha="all">All</a></li>
|
||||
<li><a href="#" class="selected" data-alpha="all" title="select all">All</a></li>
|
||||
<#list alphabet as letter>
|
||||
<li><a href="#" data-alpha="${letter?lower_case}" title="Browse all individuals whose name starts with ${letter}">${letter}</a></li>
|
||||
</#list>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue