Betreff: Re: Block wird nicht richtig angezeigt von hallo am 07.04.2005 11:29:20
Danke für deine schnelle Antwort.
So ganz die Lösung war das noch nicht:
in der theme.html:
<!-- Start left blocks loop -->
<br>
<{foreach item=block from=$xoops_lblocks}>
<{$block.bodytext|truncate:255}>
<div class="blockTitle"><{$block.title}></div>
<div class="blockContent"><{$block.content}></div>
<{/foreach}>
news_block_new.html:
<ul>
<{foreach item=news from=$block.stories}>
<li>
<a href="<{$xoops_url}>/modules/news/article.php?storyid=<{$news.id}>"><{$news.title}><{$block.bodytext|truncate:255}></a>
</li>
<{/foreach}>
</ul>
|