NIHVIVO-2595 adding title attribute to anchor tags
This commit is contained in:
parent
ce84967d01
commit
b0a274a03f
2 changed files with 8 additions and 4 deletions
|
@ -14,9 +14,9 @@
|
|||
<#assign courseUri = "http://vivoweb.org/ontology/core#Course" />
|
||||
|
||||
<ul id="find-filters">
|
||||
<li><a href="${urls.base}/individuallist?vclassId=${subjectAreaUri?url}">Subject Area</a></li>
|
||||
<li><a href="${urls.base}/individuallist?vclassId=${departmentUri?url}">Department</a></li>
|
||||
<li><a href="${urls.base}/individuallist?vclassId=${courseUri?url}">Courses</a></li>
|
||||
<li><a href="${urls.base}/individuallist?vclassId=${subjectAreaUri?url}" title="subject area">Subject Area</a></li>
|
||||
<li><a href="${urls.base}/individuallist?vclassId=${departmentUri?url}" title="department">Department</a></li>
|
||||
<li><a href="${urls.base}/individuallist?vclassId=${courseUri?url}" title="courses">Courses</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</section>
|
||||
|
|
|
@ -7,8 +7,12 @@
|
|||
-->
|
||||
|
||||
<#import "lib-datetime.ftl" as dt>
|
||||
<#--
|
||||
Added ! statement.label?? to this if statement. Otherwise, we display the incomplete message
|
||||
even when there is a valid label (possibly via ingest), such as Spring 2010. tlw72
|
||||
-->
|
||||
|
||||
<#if ! statement.valueStart?? && ! statement.valueEnd??>
|
||||
<#if ! statement.valueStart?? && ! statement.valueEnd?? && ! statement.label?? >
|
||||
<a href="${profileUrl(statement.dateTimeInterval)}">incomplete date/time interval</a>
|
||||
<#else>
|
||||
<#if statement.label??>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue