mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-27 06:22:31 +00:00
35 lines
975 B
PHP
35 lines
975 B
PHP
<? // Preamble
|
|
$pageName = "Welcome!";
|
|
$currPage = "home"; // Name of the page, for the menu
|
|
require "parts/preamble.php"; // Load most of document
|
|
?>
|
|
<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>
|
|
git clone --depth 1 git://git.code.sf.net/p/quake/quakeforge
|
|
</code>
|
|
<BR>
|
|
Or for the full history:
|
|
<code>
|
|
git clone git://git.code.sf.net/p/quake/quakeforge
|
|
</code>
|
|
</P>
|
|
<?
|
|
|
|
need ("boxes news");
|
|
newsBoxOpen ('Latest News');
|
|
|
|
printLatestNews (5);
|
|
newsBoxTitle ('Older News...', '/old_news.php');
|
|
|
|
newsBoxClose ();
|
|
?>
|
|
<!--<? include "partners.inc"; ?>-->
|