mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-10 15:22:13 +00:00
5bd96c52a3
added new logos to gallery
90 lines
3.3 KiB
PHP
90 lines
3.3 KiB
PHP
<html>
|
|
<head>
|
|
<title>QuakeForge: An Open Source Quake Development Project</title>
|
|
<meta http-equiv="Content-Type" content="text/html; CHARSET=iso-8859-1">
|
|
<meta name="description" content="The QuakeForge Project">
|
|
<meta name="Author" content="members of The QuakeForge Project">
|
|
|
|
<style>
|
|
<!--
|
|
A:link {text-decoration: none}
|
|
A:visited {text-decoration: none}
|
|
A:active {text-decoration: none;}
|
|
A:hover {text-decoration: underline}
|
|
-->
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body text="#ffffff" bgcolor="#000000" link="#SkyBlue" vlink="#0000ff" alink="LightSeaGreen">
|
|
|
|
<table BORDER="0" COLS="0" WIDTH="95%" align="center">
|
|
<tr>
|
|
<td WIDTH="100%" align=center>
|
|
<a href="contest.php"><img src="images/qfcontest.gif" border="0" align="absmiddle"></a><img src="images/qfproject2small.png" border="0" align="absmiddle">
|
|
<br><br>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td WIDTH="100%" align=center><hr>
|
|
[ <a href="index.php">about</a> ]
|
|
[ <a href="news.php">news</a> ]
|
|
[ <a href="progress.php">progress</a> ]
|
|
[ <a href="irc.php">irc</a> ]
|
|
[ <a href="devfiles.php">downloads</a> ]
|
|
[ <a href="howto.php">howto</a> ]
|
|
[ <a href="http://sourceforge.net/mail/?group_id=882">mailing lists</a> ]
|
|
[ <a href="links.php">links</a> ]
|
|
[ <a href="develop.php">developers</a> ]
|
|
[ <a href="gallery.php">Logo Gallery</a> ]
|
|
[ <a href="mailto:palisade@quakeforge.net">comments</a> ]
|
|
[ Credits ]
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td WIDTH="100%" align="left"><hr>
|
|
<?
|
|
$fr = fopen("files/CREDITS", "r");
|
|
|
|
while($line = fgets($fr, 2048))
|
|
{
|
|
if(preg_match("/\</", $line))
|
|
{
|
|
$words = preg_split("/\</", $line);
|
|
$words[1] = preg_replace("/>/", "", $words[1]);
|
|
print "<a href=\"mailto:$words[1]\">$words[0]</a><br>";
|
|
}
|
|
else
|
|
{
|
|
$line = preg_replace("/http:\/\/(.*)/", "<a href=\"http://\\1\">http://\\1</a>", $line);
|
|
print "$line<br>";
|
|
}
|
|
}
|
|
fclose($fr);
|
|
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="center">
|
|
<hr>
|
|
<a href="http://www.sourceforge.net"><img src="images/sflogo.png" border=0 alt="SourceForge"></a>
|
|
<a href="http://www.libranet.com/petition.html"><img src="images/petition_button.jpg" border=0 alt="Sign The Linux Driver Petition"></a>
|
|
<a href="http://www.planetquake.com/aftershock/"><img src="images/aftershock_logo.jpg" border=0 alt="Aftershock"></a>
|
|
<br>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="center">
|
|
<br>
|
|
<font size="-1">
|
|
<br>Website Copyright (C) 1999,2000 contributors of the QuakeForge Project.
|
|
<br><a href="copyright.php">View Additional Copyright and Trademark Acknowledgements</a>
|
|
</font>
|
|
<br>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
|