mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-24 13:11:46 +00:00
06ed1cd973
completeness. titletable.php: Changed color usage so that we can change theme at will, when we want to. :) parts/*amble.php: Cool New Stuff to allow even simpler maintenance of individual PHP source files...you will only have to maintain stuff that's "native" to the page. As always, backward compatibility is kept...but it's much better now. :)
18 lines
618 B
PHP
18 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>
|