NIHVIVO-641: Changed markup <article> for <li> in individual display list on browse by section.

This commit is contained in:
mb863 2011-01-07 22:11:49 +00:00
parent a201cd2c31
commit 00d144196a
4 changed files with 27 additions and 12 deletions

View file

@ -51,6 +51,8 @@
</nav>
<section id="individuals-in-childClass" role="region">
<ul role="list">
</ul>
</section>
</section>

View file

@ -3,9 +3,9 @@
<#-- Template for rendering the classes in a class group for menupages -->
<nav role="navigation">
<ul id="vgraph-childClasses">
<ul id="vgraph-childClasses" role="list">
<#list vClassGroup as vClass>
<li><a href="#browse-by" title="Browse all people in this class" data-uri="${vClass.URI}">${vClass.name} <span class="count-classes">(${vClass.entityCount})</span></a></li>
<li role="listitem"><a href="#browse-by" title="Browse all people in this class" data-uri="${vClass.URI}">${vClass.name} <span class="count-classes">(${vClass.entityCount})</span></a></li>
</#list>
</ul>
</nav>