diff options
Diffstat (limited to 'web/index.php')
-rw-r--r-- | web/index.php | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/web/index.php b/web/index.php deleted file mode 100644 index 50e06fd..0000000 --- a/web/index.php +++ /dev/null @@ -1,48 +0,0 @@ -<?php -set_include_path("include"); -require("thebrain.php"); -include("downloads.php"); -ob_start(); -?> -<?php //hawhaw - echo "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>"; - echo $extradoctype; -?> - -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <meta content="<?php echo $content_type; ?> charset=UTF-8" /> - <meta name="description" content="Open Source Quake 3" /> - <title>icculus.org/quake3: <?php echo $navlist[$page]; ?></title> - <link rel="stylesheet" href="ioq3.css" type="text/css" /> - <link rel="icon" type="image/png" href="images/icon.png"/> -</head> -<body> - <div id="header"> - <h1>icculus.org/quake3</h1> - <ul id="navigation"> -<?php -foreach ($navlist as $file => $alias) { - echo "<li>"; - if ($file != $page) { echo "<a href=\"?page=$file\">$alias</a>"; } - else { echo "<span class=\"current\">$alias</span>"; } - echo "</li>\n"; -} -?> - <li><a href="http://svn.icculus.org/quake3/trunk">Subversion Web</a></li> - </ul> - </div> - <div id="content"> -<?php include_safe("$page.php"); ?> - </div> - <div id="footer"> - <a href="http://jigsaw.w3.org/css-validator/validator?uri=http://icculus.org/quake3/ioq3.css&warning=0">Valid CSS</a> | - <a href="http://validator.w3.org/check?uri=referer">Valid XHTML</a> | - <a href="http://icculus.org">icculus.org</a> - <br /> - Website designed and handled by <a href="http://floam.sh.nu" title="floam">Aaron Gyes</a>. - </div> -</body> -</html> -<?php ob_end_flush(); ?> |