blob: 1af38d5d18ff3a4c892d87ce1c9755f5bdc27aab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{* $Header: /cvsroot/bitweaver/_bit_blogs/modules/mod_last_created_blogs.tpl,v 1.5 2006/02/09 14:52:46 squareing Exp $ *}
{strip}
{if $gBitSystem->isPackageActive( 'blogs' )}
{if $nonums eq 'y'}
{eval var="{tr}Last `$module_rows` Created blogs{/tr}" assign="tpl_module_title"}
{else}
{eval var="{tr}Last Created blogs{/tr}" assign="tpl_module_title"}
{/if}
{bitmodule title="$moduleTitle" name="last_created_blogs"}
<ol class="blogs">
{section name=ix loop=$modLastCreatedBlogs}
<li><a href="{$modLastCreatedBlogs[ix].blog_url}">{$modLastCreatedBlogs[ix].title|default:"Blog `$modLastCreatedBlogs[ix].blog_id`"}</a></li>
{sectionelse}
<li></li>
{/section}
</ol>
{/bitmodule}
{/if}
{/strip}
|