mirror of
https://git.code.sf.net/p/quake/website
synced 2025-01-19 07:00:49 +00:00
added research papers section, at recommendation of John Carmack
this section will store useful 3D programming techniques, papers, and other information by mathematicians, 3D programmers, etc.
This commit is contained in:
parent
0667b15b85
commit
89d57d9319
1 changed files with 38 additions and 0 deletions
38
resources.php
Normal file
38
resources.php
Normal file
|
@ -0,0 +1,38 @@
|
|||
<?PHP
|
||||
$sitename = "The QuakeForge Project";
|
||||
$pagename = "3D Research Resource";
|
||||
require("parts/library.php"); // Load function library
|
||||
include("parts/head.php"); // Load the HEAD and open BODY
|
||||
include("parts/topstrip.php"); // Display top strip
|
||||
include("parts/titletable.php"); // Display main title w/ logos
|
||||
?>
|
||||
<TABLE width="100%" cellspacing=0 cellpadding=0 border=0>
|
||||
<TR valign="top">
|
||||
<?php
|
||||
include("parts/menu.php"); // Import left-side menus
|
||||
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
|
||||
?>
|
||||
<TD width="100%">
|
||||
<?php
|
||||
$focused = "none"; // name of focused icon
|
||||
include( "parts/topmain.php" ); // Display content top table
|
||||
?>
|
||||
<P>
|
||||
<center><font size="+2">Welcome to the QuakeForge Research Resource</font><hr>
|
||||
<br>In the future, this space will provide 3D programming resources chosen by our developers as interesting or essential
|
||||
for work on enhancing the QuakeForge engine. Bookmark this page and check back when we've begun adding content, thank you.
|
||||
<br><br>
|
||||
<hr>Page last updated: April, 18th 2000
|
||||
</TD>
|
||||
<?php
|
||||
tableSpacer( 1, 9, 1, "black");
|
||||
?>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD COLSPAN="4">
|
||||
<?php
|
||||
include("parts/copyright.php");
|
||||
?>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
Loading…
Reference in a new issue