/*****************************************************/
/* jPORTAL - internetowy system portalowy */
/*****************************************************/
/* autor: Pawel 'jaco' Jaczewski */
/* email: info@websys.pl */
/*****************************************************/
include('config.php');
include('module/news.inc.php');
#=====================================================#
function site_main() {
global $topic, $news_limit;
main_title_open();
echo 'Witamy!';
main_title_close();
main_text_open();
# text powitalny teraz w pliku index.txt
# oczywiscie mozna usunac ten fragment i
# umiescic wstep jak w poprzednich wersjach.
$index = file('index.txt');
$index = join('', $index);
$index = strtr($index, '¥Œ¹œŸ', '¡¦¬±¶¼');
echo $index;
main_text_close();
list_news(1, $topic, $news_limit);
echo '[archiwum newsów |
dodaj news]';
echo '
';
}
#=====================================================#
$site_title = 'witamy!';
$meta_info = '';
include("theme/$theme/index.php");
?>