forked from BSVino/docs.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html> | ||
<head> | ||
<meta charset='utf-8'> | ||
<title>About docs.gl</title> | ||
|
||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> | ||
<script src="jquery-cookie/jquery.cookie.js"></script> | ||
|
||
<link href="style.css" rel="stylesheet" type="text/css" /> | ||
<link id="pagestyle" href="style_light.css" rel="stylesheet" type="text/css" /> | ||
|
||
<script> | ||
$(function() { | ||
if ($.cookie("pagestyle") == 'light') | ||
$("#pagestyle").attr("href", "style_light.css"); | ||
|
||
if ($.cookie("pagestyle") == 'dark') | ||
$("#pagestyle").attr("href", "style_dark.css"); | ||
}); | ||
</script> | ||
|
||
</head> | ||
<body> | ||
|
||
<div id="front_page"> | ||
<img src="logo-lg.png" /><br /> | ||
OpenGL API Documentation<br /><br /><br /> | ||
|
||
<p>docs.gl is an improvement of the official OpenGL documentation. It was written by <a href="http://vinoisnotouzo.com/">Jorge Rodríguez</a>. Each reference page is under individual copyright listed in that entry, all other content is in the public domain. docs.gl is completely unaffiliated with OpenGL and Khronos.</p> | ||
<p>Anyone can contribute to docs.gl to improve the OpenGL documentation. The source code to docs.gl is <a href="https://github.com/BSVino/docs.gl">available on GitHub</a>. Pull requests and suggestions are welcome.</p> | ||
<p><a href="/">Back</a></p></div> | ||
|
||
</div> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters