mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-10 23:32:38 +00:00
22 lines
616 B
PHP
22 lines
616 B
PHP
|
<? // Preamble
|
||
|
$pageName = "Developer Plans";
|
||
|
$focused = "none"; // Dock icon name to gets a border
|
||
|
require("parts/preamble.php"); // Load most of document
|
||
|
?>
|
||
|
<!--SEARCHME-->
|
||
|
<TABLE width="100%" cellSpacing="0" cellPadding="0" border="0">
|
||
|
<TR vAlign="top">
|
||
|
<TD colSpan="2"><? // News display
|
||
|
tableBoxHeader( 'black', tableHeadColor );
|
||
|
tableTitle( 'Developer Plans', 1, tableHeadColor );
|
||
|
require("news_funcs.php");
|
||
|
include("see_plans.php");
|
||
|
tableBoxFooter();
|
||
|
?></TD>
|
||
|
</TR>
|
||
|
</TABLE>
|
||
|
<!--NOSEARCH-->
|
||
|
<?
|
||
|
require("parts/postamble.php"); // Finish this sucker up
|
||
|
?>
|