website/index.php

33 lines
798 B
PHP
Raw Normal View History

2000-04-28 04:18:50 +00:00
<? // Preamble
2000-05-08 02:39:55 +00:00
$pageName = "News";
2000-04-28 04:18:50 +00:00
$focused = "home"; // Dock icon name to gets a border
require("parts/preamble.php"); // Load most of document
?>
<!--SEARCHME-->
<TABLE width="100%" cellSpacing="0" cellPadding="0" border="0">
<TR vAlign="top">
2000-04-28 04:18:50 +00:00
<TD colSpan="2"><? // News display
2000-05-08 02:39:55 +00:00
tableBoxHeader( 'black', tableHeadColor );
tableTitle( 'Latest News', 1, tableHeadColor );
require("news_funcs.php");
2000-05-08 00:57:29 +00:00
include("cur_news.php");
2000-04-28 04:18:50 +00:00
tableBoxFooter();
?></TD>
</TR>
<TR vAlign=top>
<? tableSpacer(9, 9, 1, "black"); ?>
</TR>
2000-04-28 04:18:50 +00:00
<TR vAlign=top>
<TD align="center">
<? include("sponsor_incl.html"); ?>
</TD>
</TR>
2000-04-28 04:18:50 +00:00
<TR vAlign=top>
<? tableSpacer(9, 9, 1, "black"); ?>
</TR>
</TABLE>
2000-04-28 04:18:50 +00:00
<!--NOSEARCH-->
<?
require("parts/postamble.php"); // Finish this sucker up
?>