frugo0
31-01-2006, 20:43
/************************************************** ***/
/* 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 '
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 = 'JaZdAaAaAaaa!';
$meta_info = '';
include("theme/$theme/index.php");
?>