Foreach.first problems
Posted: Thu Feb 08, 2007 6:00 pm
Hi.
I wish to show big icon in first news(and only there), so I`ve used smarty.foreach.first function.
So, I`ve edit my entreis.tpl:
...And that outputs me:
Could someone help me?
I wish to show big icon in first news(and only there), so I`ve used smarty.foreach.first function.
So, I`ve edit my entreis.tpl:
Code: Select all
{serendipity_hookPlugin hook="entries_header" addData="$entry_id"}
{foreach from=$entries item="dategroup"}
{foreach name="entryloop" from=$dategroup.entries item="entry"}
<div class="news">
{if $smarty.foreach.entryloop.first}
first news.
<!-- do some more stuff -->
{else}
second news.
<!-- and something more... -->
{/if}
<!-- here is other stuff-->
{/foreach}
{/foreach}
Code: Select all
Entry num | Text:
1 | First news
2 | First news
3 | second news
4 | first news
5 | second news