Make new block via Ip Content
<div class='general_box'>
<if test="is_array( $records ) && count( $records )">
{parse striping="feed_striping" classes="row1,row2 altrow"}
<table id="tabledlist" class="tablesorter">
<thead>
<tr>
<th>Forum Topic</th>
<th>Date</th>
<th>Posted By</th>
</tr>
</thead>
<foreach loop="$records as $r">
<tr>
<td><a href='{$r['url']}' title='{$r['title']}'>{$r['title']}</a></td>
<td><abbr class="published" title="{parse expression="date( 'c', $r['date'] )"}"> {parse date="$r['date']" format="short"}</abbr></td>
<td>{$r['lastpostername']}</td>
</tr>
</foreach>
</table>
</if>
</div>