website/news.php

50 lines
1.2 KiB
PHP

<?
$sitename = "The QuakeForge Project";
$pagename = "News Archives";
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">
<?
include("parts/menu.php"); // Import left-side menus
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
?>
<TD width="100%">
<?
$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">
<?
tableBoxHeader( 'black', $tableHeadColor );
tableTitle( 'All News', 1, $tableHeadColor );
include("news_funcs.php");
include("cur_news.php");
include("old_news.php");
tableBoxFooter();
?>
</TD>
</TR>
</TABLE>
&nbsp;<BR>
</TD>
<?php
tableSpacer( 1, 9, 1, "black");
?>
</TR>
<TR>
<TD colSpan="4">
<?php
include("parts/copyright.php");
?>
</TD>
</TR>
</TABLE>