mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-27 14:32:31 +00:00
14 lines
341 B
PHP
14 lines
341 B
PHP
<? // Preamble
|
|
$pageName = "Welcome!";
|
|
$currPage = "home"; // Name of the page, for the menu
|
|
require "parts/preamble.php"; // Load most of document
|
|
|
|
need ("boxes news");
|
|
newsBoxOpen ('Latest News');
|
|
|
|
printLatestNews (5);
|
|
newsBoxTitle ('Older News...', '/old_news.php');
|
|
|
|
newsBoxClose ();
|
|
?>
|
|
<!--<? include "partners.inc"; ?>-->
|