Layout and other changes

This commit is contained in:
genuineparts 2025-06-15 22:25:18 +02:00
parent 3f5ef1296a
commit 4632884065
41 changed files with 5563 additions and 544 deletions

View file

@ -7,7 +7,7 @@ class module_mybbnews extends admin_module{
$info["file"]="mybbnews";
$info["author"]="genuineparts";
$info["version"]="1.0.0";
$info["url"]="http://www.austriachat.net";
$info["url"]="http://www.becast.ar";
return $info;
}

View file

@ -1,22 +1,26 @@
<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}
<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}