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

27 lines
596 B
Smarty
Raw Normal View History

2025-06-02 10:01:12 +02:00
<h2>News</h2>
{foreach from=$news item=n}
2025-06-15 22:25:18 +02:00
<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}