include('config.php');
include('module/news.inc.php');
#=====================================================#
function site_main() {
global $id, $news, $topic;
main_title_open();
echo '
';
main_title_close();
main_text_open();
if(isset($id)) {
show_news(3);
echo '';
echo $links;
echo'
';
} else {
list_news(1, $_GET['topic'], $GLOBALS[news_limit]);
}
main_text_close();
}
#=====================================================#
$site_title = '';
$meta_info = '';
include("theme/$theme/index.php");
?>