blob: 158549c36114051c8557f0294435deca423c1a51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{* $Header$ *}
{strip}
{if $modLastPages}
{bitmodule title="$moduleTitle" name="last_changes"}
<ol>
{section name=ix loop=$modLastPages}
<li>
{if !$contentType}
<strong>{tr}{$gLibertySystem->getContentTypeName($modLastPages[ix].content_type_guid)}{/tr}: </strong>
{/if}
{$modLastPages[ix].display_link}
{if $userShowDate}
<br/><span class="date">{$modLastPages[ix].last_modified|bit_long_date}</span>
{/if}
</li>
{sectionelse}
<li></li>
{/section}
</ol>
<a href="{$smarty.const.LIBERTY_PKG_URL}list_content.php?user_id={$gQueryUserId}&sort_mode=last_modified_desc{if $contentType}&content_type_guid={$contentType}{/if}">{tr}View more{/tr}…</a>
{/bitmodule}
{/if}
{/strip}
|