mlibrary / online-exhibits

Online Exhibit Website using Omeka (CMS)
GNU General Public License v3.0
3 stars 3 forks source link

Semantics of the browse tags should be contained within <li> tags. UI-Work #328

Closed bertrama closed 2 years ago

bertrama commented 6 years ago

The semantics for the <ul>, <li> look to be off:

<ul class="tag-list">
  <li>Tags:</li>
  <a href="/online-exhibits-o261/exhibits/browse?tags=Children%27s+Literature" rel="tag">Children's Literature</a>
  <a href="/online-exhibits-o261/exhibits/browse?tags=U-M+Library+Special+Collections" rel="tag">U-M Library Special Collections</a>
</ul>

This should probably be:

<ul class="tag-list">
  <header>Tags:</header>
  <li>
    <a href="/online-exhibits-o261/exhibits/browse?tags=Children%27s+Literature" rel="tag">
      Children's Literature
    </a>
  </li>
  <li>
    <a href="/online-exhibits-o261/exhibits/browse?tags=U-M+Library+Special+Collections" rel="tag">
      U-M Library Special Collections
    </a>
  <li>
</ul>