blob: 5f5c88bfb78a4357fccb1f1020c44b2a5c741624 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{* $Header: /cvsroot/bitweaver/_bit_liberty/modules/mod_last_comments.tpl,v 1.1 2007/05/21 20:44:06 squareing Exp $ *}
{strip}
{if $modLastComments}
{bitmodule title="$moduleTitle" name="last_comments"}
<ol>
{section name=ix loop=$modLastComments}
<li>
{$modLastComments[ix].root_content_title}: {$modLastComments[ix].display_link}
{if $moduleParams.module_params.show_date}
<br /><span class="date">{$modLastComments[ix].last_modified|bit_short_datetime}</span>
{/if}
</li>
{sectionelse}
<li></li>
{/section}
</ol>
{/bitmodule}
{/if}
{/strip}
|