mirror of
https://git.code.sf.net/p/quake/website
synced 2025-02-17 17:31:39 +00:00
another 404 bites the dust
This commit is contained in:
parent
7c5d90acde
commit
d1e8ace9c0
1 changed files with 40 additions and 0 deletions
40
about.php
Normal file
40
about.php
Normal file
|
@ -0,0 +1,40 @@
|
|||
<?PHP
|
||||
$sitename = "The QuakeForge Project";
|
||||
$pagename = "About QuakeForge";
|
||||
require("parts/library.php"); // Load function library
|
||||
include("parts/head.php"); // Load the HEAD and open BODY
|
||||
include("parts/topstrip.php"); // Display top strip
|
||||
include("parts/titletable.php"); // Display main title w/ logos
|
||||
?>
|
||||
<TABLE width="100%" cellspacing=0 cellpadding=0 border=0>
|
||||
<TR valign="top">
|
||||
<?php
|
||||
include("parts/menu.php"); // Import left-side menus
|
||||
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
|
||||
?>
|
||||
<TD width="100%">
|
||||
<?php
|
||||
$focused = "none"; // name of focused icon
|
||||
include( "parts/topmain.php" ); // Display content top table
|
||||
?>
|
||||
<P>
|
||||
QuakeForge's aim is to create a long-lasting project to
|
||||
work on developing and extending the Quake® source
|
||||
release (and any future releases) while maintaining
|
||||
backwards compatibility with the original Quake and
|
||||
QuakeWorld®. Our international team of developers is
|
||||
working hard to reach this goal, and we believe we are
|
||||
succeeding.
|
||||
</TD>
|
||||
<?php
|
||||
tableSpacer( 1, 9, 1, "black");
|
||||
?>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD COLSPAN="4">
|
||||
<?php
|
||||
include("parts/copyright.php");
|
||||
?>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
Loading…
Reference in a new issue