2025-08-22 17:52:16 -05:00

28 lines
435 B
HTML

{include "layout.html"}
{block "content"}
<div class="thread-title mb-05">
<h2>Forum</h2>
<div>
<a href="/forum/new"><button class="btn btn-primary">New Thread</button></a>
</div>
</div>
{if #threads > 0}
<table>
<tbody>
{for thread in threads}
<tr>
<td><a href="/forum/{thread.ID}">{thread.Title}</a></td>
<td>{thread.Replies} Replies</td>
</tr>
{/for}
</tbody>
</table>
{else}
No threads!
{/if}
{/block}