website/index.php

36 lines
984 B
PHP
Raw Normal View History

<?php // Preamble
$pageName = "Welcome!";
2001-10-17 05:46:43 +00:00
$currPage = "home"; // Name of the page, for the menu
2001-06-06 06:15:47 +00:00
require "parts/preamble.php"; // Load most of document
?>
2010-08-18 20:24:31 +00:00
<P>
QuakeForge is a 3D first-person shooter game engine based on
<A href="http://www.idsoftware.com/">id Software</a>'s legendary Quake and
QuakeWorld game engines. Our purpose is to improve the state of the game
by improving the engine, making a good base for game and engine
modifications, and making it accessible to the largest number of players
we can. We like it, and we think you will too.
</P>
<P>
To get just the latest code:
<code>
2013-01-24 10:29:16 +00:00
git clone --depth 1 git://git.code.sf.net/p/quake/quakeforge
</code>
<BR>
Or for the full history:
<code>
2013-01-24 10:29:16 +00:00
git clone git://git.code.sf.net/p/quake/quakeforge
</code>
</P>
<?php
need ("boxes news");
newsBoxOpen ('Latest News');
printLatestNews (5);
newsBoxTitle ('Older News...', '/old_news.php');
newsBoxClose ();
2000-09-26 04:04:08 +00:00
?>
<!--<?php include "partners.inc"; ?>-->