mirror of
https://git.code.sf.net/p/quake/website
synced 2025-01-19 07:00:49 +00:00
58 lines
1.8 KiB
PHP
58 lines
1.8 KiB
PHP
<?
|
|
$sitename = "The QuakeForge Project";
|
|
$pagename = "Homepage";
|
|
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>
|
|
QuakeForge's aim is to create a long-lasting project to work on developing and extending the Quake® source release (and any future releases) while maintaining backwards compatibility with the original Quake and QuakeWorld®. Our international team of developers is working hard to reach this goal, and we believe we are succeeding.
|
|
<P>
|
|
<TABLE width="100%" cellSpacing="0" cellPadding="0" border="0">
|
|
<TR vAlign=top>
|
|
<TD colSpan="2">
|
|
<?
|
|
function newsItem( $date, $user, $text )
|
|
{
|
|
echo '<TR><TD><DL><DT>Posted on ' . $date . ' by ' . $user . '</DT>' .
|
|
' <DD>' . $text . '</DD>' .
|
|
'</DL></TD></TR>';
|
|
}
|
|
|
|
tableBoxHeader( 'black', $tableHeadColor );
|
|
tableTitle( 'Latest News', 1, $tableHeadColor );
|
|
include("cur_news.php");
|
|
tableBoxFooter();
|
|
?>
|
|
</TD>
|
|
</TR>
|
|
</TABLE>
|
|
<?
|
|
include("sponsor_incl.html");
|
|
?>
|
|
<BR>
|
|
</TD>
|
|
<?
|
|
tableSpacer( 1, 9, 1, "black");
|
|
?>
|
|
</TR>
|
|
<TR>
|
|
<TD COLSPAN="4">
|
|
<?
|
|
include("parts/copyright.php");
|
|
?>
|
|
</TD>
|
|
</TR>
|
|
</TABLE>
|