8407d17ee9
git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@404 7f0cb862-5218-0410-a997-914c9d46530a
35 lines
1.1 KiB
PHP
35 lines
1.1 KiB
PHP
<?PHP
|
|
# Freeglut Web Page
|
|
# This block ensures that template.php is always hit, no matter what subdirectory
|
|
$slashes=substr_count ( $_SERVER['PHP_SELF'], "/");
|
|
for (;$slashes>1; $slashes--) { $require_target .= "../"; }
|
|
$require_target .= "template.php";
|
|
require($require_target);
|
|
|
|
# Now set the title of the page:
|
|
setPageTitle("Information for Users");
|
|
|
|
# Make the header.
|
|
generateHeader($_SERVER['PHP_SELF']);
|
|
?>
|
|
|
|
<div class="img-right"><img src="/images/OGL.png"><BR>
|
|
This is OpenGL at its finest.</div>
|
|
|
|
<div class="textheader">This is better than GLUT.</div>
|
|
<p>freeglut started as a GLUT clone, but now it's something much better than that. It's a GLUT replacement. Here are the features you have wanted -- and if you have ideas for more, share them!</p>
|
|
<p>Below, find documentation for freeglut...</p>
|
|
|
|
<div class="textheader">Check out...</div>
|
|
<p><a href="/help.php">How You Can Help</a></p>
|
|
|
|
<div class="textheader">Documentation</div>
|
|
<p>Installation<br>
|
|
<a href="/docs/install.php">How to install freeglut on various platforms</a></p>
|
|
<p>Programming API<br>
|
|
<a href="/docs/api.php">How to use freeglut in your applications</a></p>
|
|
|
|
|
|
<?PHP
|
|
generateFooter();
|
|
?>
|