34 lines
520 B
Smarty
34 lines
520 B
Smarty
<br /><br />
|
|
{foreach from=$news item=news}
|
|
|
|
<div class="widget collapsible" style="background-color: #333333">
|
|
<header><h2>{$news.titel} <span style="float:right"> {$news.time|date_format:"%d.%m.%Y"} um {$news.time|date_format:"%H:%M"} Uhr </span></h2></header>
|
|
<section>
|
|
<p>{$news.text}</p>
|
|
<br /> <span style="float:right">Poster: {$news.poster}</span>
|
|
<br />
|
|
</section>
|
|
</div>
|
|
{/foreach}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|