Remove obsolete file
[banana.git] / examples / index.php
CommitLineData
90962c86 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
4cc7f778 10require_once("banana/banana.inc.php");
0e25d15d 11$banana = new Banana();
12$res = $banana->run();
90962c86 13
608f5b71 14if ($res != "") {
90962c86 15?>
0e25d15d 16<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
17<html xmlns="http://www.w3.org/1999/xhtml">
8d99c683 18 <head>
19 <meta http-equiv="Content-Type" content="text/html;
0e25d15d 20 charset=UTF-8">
8d99c683 21 <meta name="description" content="WebForum2/Banana">
22 <link href="css/style.css" type="text/css" rel="stylesheet" media="screen">
23 <link href="css/banana.css" type="text/css" rel="stylesheet" media="screen">
24 <title>
25 Banana, a NNTP<->Web Gateway
26 </title>
27 </head>
28 <body>
29 <div class="bloc">
30<?php echo $res; ?>
31 <div class="foot">
32 <em>Banana</em>, a Web interface for a NNTP Server<br />
33 Developed under GPL License for <a href="http://www.polytechnique.org">Polytechnique.org</a>
35bf53d0 34 Use <em>silk</em> icons from <a href="http://www.famfamfam.com/lab/icons/silk/">www.famfamfam.com</a>
8d99c683 35 </div>
36 </div>
37 </body>
38</html>
608f5b71 39<?php
40}
d5588318 41
42// vim:set et sw=4 sts=4 ts=4
608f5b71 43?>