diff options
author | floam <floam@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-03-24 07:06:02 +0000 |
---|---|---|
committer | floam <floam@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-03-24 07:06:02 +0000 |
commit | f499058467a91b1db84891b2afeb540dc7d85ae1 (patch) | |
tree | 19e4441c7f4338f759349780cb018d6f1f211e89 /web/index.php | |
parent | 210510938b89c936dfd45f90f6076f86b8b88a6a (diff) | |
download | ioquake3-aero-f499058467a91b1db84891b2afeb540dc7d85ae1.tar.gz ioquake3-aero-f499058467a91b1db84891b2afeb540dc7d85ae1.zip |
Changes!
git-svn-id: svn://svn.icculus.org/quake3/trunk@657 edf5b092-35ff-0310-97b2-ce42778d08ea
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(); ?> |