Skip to content

Commit

Permalink
About
Browse files Browse the repository at this point in the history
  • Loading branch information
BSVino committed Aug 22, 2014
1 parent d80252e commit 3ab6efb
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
37 changes: 37 additions & 0 deletions html/copy/about.html
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&iacute;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>
1 change: 1 addition & 0 deletions html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@
</head>
<body>

<div style="width: 950px; margin-left: auto; margin-right: auto; text-align: right"><a href="about.html">about docs.gl</a></div>
<div id="front_page">
<img src="logo-lg.png" /><br />
OpenGL API Documentation<br /><br /><br />
Expand Down

0 comments on commit 3ab6efb

Please sign in to comment.