{if isset($oNews_arr) && $oNews_arr|@count > 0}
<div class="container">
<h1 class="underline">{lang key="news" section="news" alt_section="global,"}</h1>
{foreach name=news from=$oNews_arr item=oNews}
<h2><a href="{$oNews->cURL}">{$oNews->cBetreff}</a></h2>
{$oNews->dErstellt_de} | <a href="{$oNews->cURL}#comments" title="{lang key="readComments" section="news"}">{$oNews->nNewsKommentarAnzahl} {if $oNews->nNewsKommentarAnzahl == 1}{lang key="newsComment" section="news"}{else}{lang key="newsComments" section="news"}{/if}</a>
<div class="custom_content">
{if $oNews->cVorschauText|count_characters > 0}
{$oNews->cVorschauText}
{$oNews->cMehrURL}
{elseif $oNews->cText|count_characters > 200}
{$oNews->cText|truncate:200:$oNews->cMehrURL}
{else}
{$oNews->cText}
{/if}
</div>
{/foreach}
</div>
{/if}