mirror of
https://git.code.sf.net/p/quake/website
synced 2025-01-31 20:50:53 +00:00
19 lines
618 B
PHP
19 lines
618 B
PHP
|
<? // Preamble
|
||
|
$sitename = "The QuakeForge Project";
|
||
|
require("parts/library.php"); // Load function library
|
||
|
require("parts/head.php"); // Load the HEAD and open BODY
|
||
|
require("parts/topstrip.php"); // Display top strip
|
||
|
require("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%">
|
||
|
<?
|
||
|
include( "parts/topmain.php" ); // Display content top table
|
||
|
?>
|
||
|
<P>
|