Updated to new scheme.

This commit is contained in:
Jeff Teunissen 2000-04-28 04:18:50 +00:00
parent 36afabf07e
commit f130698128
1 changed files with 27 additions and 45 deletions

View File

@ -1,50 +1,32 @@
<?
$sitename = "The QuakeForge Project";
<? // Preamble
$pagename = "News";
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%">
<?php
$focused = "home"; // 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( 'Latest News', 1, $tableHeadColor );
include("news_funcs.php");
include("cur_news.php");
tableBoxFooter();
?>
</TD>
</TR>
</TABLE>
<?
include("sponsor_incl.html");
?>
&nbsp;<BR>
</TD>
<?
tableSpacer( 1, 9, 1, "black");
?>
$focused = "home"; // 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( 'Latest News', 1, $tableHeadColor );
include("news_funcs.php");
include("cur_news.php");
tableBoxFooter();
?></TD>
</TR>
<TR>
<TD COLSPAN="4">
<?
include("parts/copyright.php");
?>
<TR vAlign=top>
<? tableSpacer(9, 9, 1, "black"); ?>
</TR>
<TR vAlign=top>
<TD align="center">
<? include("sponsor_incl.html"); ?>
</TD>
</TR>
<TR vAlign=top>
<? tableSpacer(9, 9, 1, "black"); ?>
</TR>
</TABLE>
<!--NOSEARCH-->
<?
require("parts/postamble.php"); // Finish this sucker up
?>