mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-14 08:51:07 +00:00
17 lines
543 B
PHP
17 lines
543 B
PHP
<? // Preamble
|
|
$pageName = "Developer Plans";
|
|
$focused = "none"; // Dock icon name to gets a border
|
|
$currPage = "plans"; // Name of the page, for the menu
|
|
require "parts/preamble.php"; // Load most of document
|
|
?>
|
|
<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);
|
|
need ("news");
|
|
include "plancache.php";
|
|
tableBoxFooter ();
|
|
?></TD>
|
|
</TR>
|
|
</TABLE>
|