<mef:set container="forums" forum_header_type="index" title="Forums" />
<div class="forum-table">
<table id="board-list" cellspacing="0" cellpadding="2" border="0" width="100%" summary="board list">
	<thead>
		<tr class="header">
			<td class="forum">Forum</td>
			<td class="topics">Topics</td>
			<td class="posts">Posts</td>
			<td class="last-post">Last Post</td>
		</tr>
	</thead>
	<tbody>
<mef:loop collection="groups" id="group" item="boards">
		<tr><td colspan="4" class="group">{group}</td></tr>
		<tr id="b" class="board" mef:loop="boards">
			<td class="forum"><a href="/forums/board/{_boards[b.pkForumBoard].folder}">{b.BoardName}</a><div class="description">{b.BoardDescription}</div></td>
			<td class="topics">{b.TotalTopics|number_format}</td>
			<td class="posts">{b.TotalPosts|number_format}</td>
			<td class="last-post">
				<small>
					<img src="/forums/icons/{b.LastPostIcon}" alt="icon" style="margin: 0 3px;" />
					<a href="/forums/last-read/{b.thread_id}">{b.LastPostTopic|replace('re: ','')|encode}</a>
					(<a href="/members/id/{b.fkLastPostMember}">{b.LastPostMember}</a>)<br />
					{b.LastPostTimestamp|localtime}
				</small>
			</td>
		</tr>
</mef:loop>
	</tbody>
</table>
</div>