website/index.php

17 lines
487 B
PHP

<? // Preamble
$pageName = "Welcome!";
$currPage = "home"; // Name of the page, for the menu
require "parts/preamble.php"; // Load most of document
?>
<DIV class="newsBox">
<DIV class="newsTitle"><H2>Latest News</H2></DIV>
<? // News display
need ("news");
$cached = latestNews (5);
?>
<DIV class="newsTitle"><A href="old_news.php">Older News...</A></DIV>
</DIV>
<!--<? include "sponsor_incl.html"; ?>-->
<?
require "parts/postamble.php"; // Finish this sucker up
?>