mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-10 15:22:13 +00:00
Updated to new scheme.
This commit is contained in:
parent
36afabf07e
commit
f130698128
1 changed files with 27 additions and 45 deletions
54
index.php
54
index.php
|
@ -1,50 +1,32 @@
|
||||||
<?
|
<? // Preamble
|
||||||
$sitename = "The QuakeForge Project";
|
|
||||||
$pagename = "News";
|
$pagename = "News";
|
||||||
require("parts/library.php"); // Load function library
|
$focused = "home"; // Dock icon name to gets a border
|
||||||
include("parts/head.php"); // Load the HEAD and open BODY
|
require("parts/preamble.php"); // Load most of document
|
||||||
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>
|
<!--SEARCHME-->
|
||||||
<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">
|
<TABLE width="100%" cellSpacing="0" cellPadding="0" border="0">
|
||||||
<TR vAlign=top>
|
<TR vAlign=top>
|
||||||
<TD colSpan="2">
|
<TD colSpan="2"><? // News display
|
||||||
<?
|
|
||||||
tableBoxHeader( 'black', $tableHeadColor );
|
tableBoxHeader( 'black', $tableHeadColor );
|
||||||
tableTitle( 'Latest News', 1, $tableHeadColor );
|
tableTitle( 'Latest News', 1, $tableHeadColor );
|
||||||
include("news_funcs.php");
|
include("news_funcs.php");
|
||||||
include("cur_news.php");
|
include("cur_news.php");
|
||||||
tableBoxFooter();
|
tableBoxFooter();
|
||||||
?>
|
?></TD>
|
||||||
|
</TR>
|
||||||
|
<TR vAlign=top>
|
||||||
|
<? tableSpacer(9, 9, 1, "black"); ?>
|
||||||
|
</TR>
|
||||||
|
<TR vAlign=top>
|
||||||
|
<TD align="center">
|
||||||
|
<? include("sponsor_incl.html"); ?>
|
||||||
</TD>
|
</TD>
|
||||||
</TR>
|
</TR>
|
||||||
|
<TR vAlign=top>
|
||||||
|
<? tableSpacer(9, 9, 1, "black"); ?>
|
||||||
|
</TR>
|
||||||
</TABLE>
|
</TABLE>
|
||||||
|
<!--NOSEARCH-->
|
||||||
<?
|
<?
|
||||||
include("sponsor_incl.html");
|
require("parts/postamble.php"); // Finish this sucker up
|
||||||
?>
|
?>
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
<?
|
|
||||||
tableSpacer( 1, 9, 1, "black");
|
|
||||||
?>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN="4">
|
|
||||||
<?
|
|
||||||
include("parts/copyright.php");
|
|
||||||
?>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
Loading…
Reference in a new issue