mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-10 15:22:13 +00:00
33 lines
857 B
PHP
33 lines
857 B
PHP
<? // Preamble
|
|
$pageName = "News";
|
|
$focused = "home"; // Dock icon name to get a border
|
|
$currPage = "home"; // Name of the page, for the menu
|
|
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 (featureBgColor, featureHeadColor);
|
|
tableTitle ('Latest News', 1, featureHeadColor);
|
|
need ("news");
|
|
$cached = latestNews (5);
|
|
tableBoxFooter ();
|
|
?></TD>
|
|
</TR>
|
|
<TR vAlign="top">
|
|
<? tableSpacer (9, 1, 1, black); ?>
|
|
</TR>
|
|
<TR vAlign="top">
|
|
<TD align="center">
|
|
<? include "sponsor_incl.html"; ?>
|
|
</TD>
|
|
</TR>
|
|
<TR vAlign="top">
|
|
<? tableSpacer (9, 1, 1, black); ?>
|
|
</TR>
|
|
</TABLE>
|
|
<!--NOSEARCH-->
|
|
<?
|
|
require "parts/postamble.php"; // Finish this sucker up
|
|
?>
|