Newer
Older
Import / svn / viewvc-1.1-dev / templates-contrib / tabbed / templates / roots.ezt
[# setup page definitions]
  [define page_title]Repository Listing[end]
  [define help_href][docroot]/help_rootview.html[end]
[# end]

[include "include/header.ezt" "directory"]

<table cellspacing="1" cellpadding="2">
<thead>
<tr>
  <th class="vc_header_sort">Name</th>
</tr>
</thead>

<tbody>
[if-any roots]
  [for roots]
  <tr class="vc_row_[if-index roots even]even[else]odd[end]">
    <td>
      <a href="[roots.href]">
      <img src="[docroot]/images/[roots.type]-logo.png" alt="" class="vc_icon" />
      [roots.name]</a>
    </td>
  </tr>
  [end]
[end]
</tbody>

</table>

[include "include/footer.ezt"]