mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-26 22:20:54 +00:00
9e6f75ccbd
PHP 7 doesn't like the old short tags we were using (it's possible to re-enable them, but won't be for version 8, so we might as well switch now), and the old MySQL APIs are now gone entirely, replaced with something different. This should make everything work at least as well as it used to. Also, one file used to be checked in with CRLF line endings. ??
35 lines
984 B
PHP
35 lines
984 B
PHP
<?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>
|
|
<?php
|
|
|
|
need ("boxes news");
|
|
newsBoxOpen ('Latest News');
|
|
|
|
printLatestNews (5);
|
|
newsBoxTitle ('Older News...', '/old_news.php');
|
|
|
|
newsBoxClose ();
|
|
?>
|
|
<!--<?php include "partners.inc"; ?>-->
|