first reimport from platal
[platal.git] / htdocs / banana / index.php
1 <?php
2 /********************************************************************************
3 * index.php : main page (newsgroups list)
4 * -----------
5 *
6 * This file is part of the banana distribution
7 * Copyright: See COPYING files that comes with this distribution
8 ********************************************************************************/
9
10 require_once('xorg.inc.php');
11 new_skinned_page('banana/index.tpl', AUTH_COOKIE);
12 $page->addCssLink('banana/css/style.css');
13 require_once('banana.inc.php');
14
15 $res = PlatalBanana::run();
16 $page->assign_by_ref('banana', $banana);
17 $page->assign('banana_res', $res);
18 $page->run();
19 ?>