Skip to content
Snippets Groups Projects
forumposts.tpl 704 B
Newer Older
  • Learn to ignore specific revisions
  • {if count($posts) > 0 }
    <div class="cbb">
    
    <h3>Looking for Something?</h3>
    <p>We are looking to remove the Forum component from the SUCS site.</p>
    <p>We recommend that you backup your data. Forum links will still work.</p>
    <p>If you don't want us to remove it please share your opinion admin@sucs.org</p>
    
    <h3>Recent Forum posts</h3>
    
    <table width="100%" class="border">
    <tr>
    <th>Subject</th>
    <th>by</th>
    </tr>
    {foreach name=posts from=$posts item=post}
    <tr>
    	<td><a href="/Community/Forum/viewtopic.php?pid={$post.last_post_id}#p{$post.last_post_id}">{$post.subject}</a></td>
    	<td><a href="/Community/Members/{$post.last_poster}">{$post.last_poster}</a></td>
    </tr>
    {/foreach}
    </table>