<?php
/*
Copyright (C) 2009 DantoBB Team
http://www.dantobb.com
*/
//
// Die when called directly in browser
//
if ( !defined('INCLUDED') )
exit();
//
// Forum list templates
//
$templates['header'] = '
';
$templates['cat_header'] = '
<table class="maintable">
<tr>
<td colspan="5" class="forumcat"><a href="{cat_url}" name="{cat_anchor}" rel="nofollow">»</a> {cat_name}</td>
</tr>
<tr>
<th class="icon"></th>
<th>{l_Forum}</th>
<th class="count">{l_Topics}</th>
<th class="count">{l_Posts}</th>
<th class="lastpostinfo">{l_LatestPost}</th>
</tr>
';
$templates['forum'] = '
<tr>
<td class="icon"><img src="{img_dir}{forum_icon}" alt="{forum_status}" /></td>
<td><div class="forumname">{forum_name}</div><div class="forumdescr">{forum_descr}</div></td>
<td class="count">{total_topics}</td>
<td class="count">{total_posts}</td>
<td class="lastpostinfo">{latest_post}<div>{by_author}</div><div>{on_date}</div></td>
</tr>
';
$templates['cat_footer'] = '
</table>
';
$templates['footer'] = '
';
?>