mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-27 22:42:57 +00:00
trying something...
This commit is contained in:
parent
9a482786f1
commit
ab44fd6c70
1 changed files with 33 additions and 32 deletions
65
index.php
65
index.php
|
@ -1,32 +1,33 @@
|
|||
<? // Preamble
|
||||
$pageName = "News";
|
||||
$focused = "home"; // Dock icon name to get a border
|
||||
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( 'black', tableHeadColor );
|
||||
tableTitle( 'Latest News', 1, tableHeadColor );
|
||||
require("news_funcs.php");
|
||||
latestNews('1 month');
|
||||
tableBoxFooter();
|
||||
?></TD>
|
||||
</TR>
|
||||
<TR vAlign=top>
|
||||
<? tableSpacer(9, 9, 1, "black"); ?>
|
||||
</TR>
|
||||
<TR vAlign=top>
|
||||
<TD align="center">
|
||||
<? include("sponsor_incl.html"); ?>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR vAlign=top>
|
||||
<? tableSpacer(9, 9, 1, "black"); ?>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<!--NOSEARCH-->
|
||||
<?
|
||||
require("parts/postamble.php"); // Finish this sucker up
|
||||
?>
|
||||
<? // Preamble
|
||||
$pageName = "News";
|
||||
$focused = "home"; // Dock icon name to get a border
|
||||
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( 'black', tableHeadColor );
|
||||
tableTitle( 'Latest News', 1, tableHeadColor );
|
||||
require("news_funcs.php");
|
||||
need('date sql');
|
||||
latestNews('1 month');
|
||||
tableBoxFooter();
|
||||
?></TD>
|
||||
</TR>
|
||||
<TR vAlign=top>
|
||||
<? tableSpacer(9, 9, 1, "black"); ?>
|
||||
</TR>
|
||||
<TR vAlign=top>
|
||||
<TD align="center">
|
||||
<? include("sponsor_incl.html"); ?>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR vAlign=top>
|
||||
<? tableSpacer(9, 9, 1, "black"); ?>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<!--NOSEARCH-->
|
||||
<?
|
||||
require("parts/postamble.php"); // Finish this sucker up
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue