CSS cleanup.
[viewgit.git] / templates / tags.php
blob94239fce51e4aa8dd92d3cd360de9ce575bc4d9f
1 <h1>Tags</h1>
3 <table class="heads">
4 <thead>
5 <tr>
6 <th class="date">Date</th>
7 <th class="branch">Tag</th>
8 <th class="actions">Actions</th>
9 </tr>
10 </thead>
11 <tbody>
12 <?php
13 foreach ($page['tags'] as $tag) {
14 echo "<tr>\n";
15 echo "\t<td>$tag[date]</td>\n";
16 echo "\t<td><a href=\"". makelink(array('a' => 'shortlog', 'p' => $page['project'], 'h' => $tag['fullname'])) ."\">$tag[name]</a></td>\n";
17 echo "\t<td></td>\n";
18 echo "</tr>\n";
21 </tbody>
22 </table>