Skip to content
Snippets Groups Projects
planetposts.tpl 385 B
Newer Older
{if count($planetposts) > 0 }
<div class="cbb">

<h3><a href="/planet/">Recent Blog entries</a></h3>

<table width="100%" class="border">
<tr>
<th>Subject</th>
<th>by</th>
</tr>
{foreach name=planetposts from=$planetposts item=post}
<tr>
	<td><a href="{$post.post_uri}">{$post.post}</a></td>
	<td><a href="{$post.user_uri}">{$post.user}</a></td>
</tr>
{/foreach}
</table>
</div>
{/if}