getContents($dbs, 10, $total, $keywords);
if ($total > 0) {
echo '
'.__(sprintf('We have %d news for you!', $total)).'
';
} else {
echo ''.__('Sorry, we don\'t have any news for you yet.').'
';
}
foreach ($content_list as $c) {
$summary = Content::createSummary($c['content_desc'], 300);
echo news_list_tpl($c['content_title'], $c['content_path'], $c['last_update'], $summary);
}
echo simbio_paging::paging($total, $sysconf['news']['num_each_page'], 5);