blob: fa48b33c3c9cd90c5ff1339435151e6a0eed58d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{* $Header$ *}
{strip}
{if $gBitSystem->isPackageActive('blogs')}
{bitmodule title="$moduleTitle" name="last_blog_posts"}
{if $blogPostsFormat == 'full'}
<div class="blog">
{foreach from=$modLastBlogPosts item=aPost}
{include file="bitpackage:blogs/blog_list_post.tpl"}
{/foreach}
</div>
{else}
{include file="bitpackage:blogs/list_posts.tpl" blogPosts=$modLastBlogPosts}
{/if}
{/bitmodule}
{/if}
{/strip}
|