2000-03-19 06:15:10 +00:00
|
|
|
<?
|
2000-03-06 08:20:37 +00:00
|
|
|
$sitename = "The QuakeForge Project";
|
|
|
|
$pagename = "News Archives";
|
2000-03-19 06:15:10 +00:00
|
|
|
require("parts/library.php"); // Load function library
|
2000-03-06 08:20:37 +00:00
|
|
|
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">
|
2000-03-19 06:15:10 +00:00
|
|
|
<?
|
2000-03-06 08:20:37 +00:00
|
|
|
include("parts/menu.php"); // Import left-side menus
|
2000-03-06 09:22:14 +00:00
|
|
|
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
|
2000-03-06 08:20:37 +00:00
|
|
|
?>
|
|
|
|
<TD width="100%">
|
2000-03-19 06:15:10 +00:00
|
|
|
<?
|
2000-03-06 08:20:37 +00:00
|
|
|
$focused = "news"; // name of focused icon
|
|
|
|
include( "parts/topmain.php" ); // Display content top table
|
|
|
|
?>
|
|
|
|
<P>
|
|
|
|
<TABLE width=100% cellSpacing=0 cellPadding=0 border=0>
|
|
|
|
<TR vAlign=top>
|
|
|
|
<TD colSpan="2">
|
2000-03-19 06:15:10 +00:00
|
|
|
<?
|
|
|
|
tableBoxHeader( 'black', $tableHeadColor );
|
2000-03-08 22:59:34 +00:00
|
|
|
tableTitle( 'All News', 1, $tableHeadColor );
|
2000-03-20 05:41:28 +00:00
|
|
|
include("news_funcs.php");
|
2000-03-20 05:28:58 +00:00
|
|
|
include("cur_news.php");
|
|
|
|
include("old_news.php");
|
2000-03-06 08:20:37 +00:00
|
|
|
tableBoxFooter();
|
|
|
|
?>
|
|
|
|
</TD>
|
|
|
|
</TR>
|
|
|
|
</TABLE>
|
|
|
|
<BR>
|
|
|
|
</TD>
|
|
|
|
<?php
|
2000-03-06 09:21:46 +00:00
|
|
|
tableSpacer( 1, 9, 1, "black");
|
2000-03-06 08:20:37 +00:00
|
|
|
?>
|
|
|
|
</TR>
|
|
|
|
<TR>
|
2000-03-08 22:59:34 +00:00
|
|
|
<TD colSpan="4">
|
2000-03-06 08:20:37 +00:00
|
|
|
<?php
|
|
|
|
include("parts/copyright.php");
|
|
|
|
?>
|
|
|
|
</TD>
|
|
|
|
</TR>
|
|
|
|
</TABLE>
|