Eaden McKee home blog

How to make a Dailies section

19 November, 2005

EDIT: This is only for bBlog version 'SVN'. I.e. developers/hackers only. How to make a 'Dailies' section like I have on my blog homepage using bBlog. This goes into your index.html template:
{if $smarty.const.ONHOME === TRUE}
<div id="dailies" class="post">
{getposts num=3 assign=dailies section="dailies"}
{foreach from=$dailies item=daily}
{if $daily.newday}
   <p>
     <b>Daily Links for 
     {$daily.posttime|date_format:s2}</b>
   </p>
{/if}
{$daily.body}
{/foreach}
</div>
{/if}
Make a section called 'dailies'. You can now post items into this section. Select 'Do not show this post on the home page' when posting.

Comments

blog comments powered by Disqus