mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-10 07:11:43 +00:00
17 lines
482 B
PHP
17 lines
482 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 "partners.inc"; ?>-->
|
|
<?
|
|
require "parts/postamble.php"; // Finish this sucker up
|
|
?>
|