You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
370 B

{if $recentforumpostslist|@count > 0}
<li class="menu_recentposts">
<h2>Recent Posts</h2>
<ul>
{foreach $recentforumpostslist as $content}
<li class="mmenu">
<a title="by {$content.username|escape:htmlall}"
href="{$smarty.const.WWW_TOP}/forumpost/{$content.id}">{$content.subject|escape:htmlall}</a>
</li>
{/foreach}
</ul>
</li>
{/if}