blob: 1ab00113e1bca21b9f00001feaed0eb7b6b1e318 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{* $Header: /cvsroot/bitweaver/_bit_blogs/modules/mod_last_blog_posts.tpl,v 1.14 2007/11/03 22:50:35 wjames5 Exp $ *}
{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}
|