funchat/modules/mybbnews/templates/default/news.tpl

22 lines
626 B
Smarty

<h2>News</h2>
{foreach from=$news item=n}
<article class="entry">
<header class="entry-header">
<h2 class="entry-title">
{$n.title}
</h2>
<div class="entry-meta">
<ul>
<li>{$n.date}</li>
<span class="meta-sep">&bull;</span>
<li><a href="/np/{$n.username}">{$n.username}</a></li>
</ul>
</div>
</header>
<div class="entry-content">
<p>{$n.text}</p>
</div>
<p><small><a href="/forum/thread-{$n.tid}.html">{$n.comments} Kommentar(e)</a></small></p>
</article> <!-- end entry -->
{foreachelse}
{/foreach}