]> ruin.nu Git - ndwebbie.git/blob - root/src/forum/index.tt2
Converted forum to catalyst.
[ndwebbie.git] / root / src / forum / index.tt2
1 [% META title = 'Forum overview' %]
2
3 <table class="boards">
4 <tr>
5         <th>Unread</th>
6         <th>Board</th>
7         <th>Last post</th>
8 </tr>
9 [% FOR category IN categories %]
10         <tr><th colspan="2">[% category.category %]</th></tr>
11         [% FOR board IN category.boards %]
12         <tr class="[% IF loop.count % 2 == 0 %]even[% ELSE %]odd[% END %]">
13                 <td align="center">[% board.unread %]</td>
14                 <td><a href="[% c.uri_for('board',board.fbid) %]">[% board.board %]</a></td>
15                 <td align="center">[% board.last_post %]</td>
16         </tr>
17         [% END %]
18 [% END %]
19 </table>