|
@@ -0,0 +1,90 @@
|
|
|
+<!doctype html>
|
|
|
+
|
|
|
+<html>
|
|
|
+
|
|
|
+<head>
|
|
|
+
|
|
|
+<title>Monkey2 Documentation</title>
|
|
|
+
|
|
|
+<link rel="stylesheet" href="js-treeview/treeview.css">
|
|
|
+
|
|
|
+<link rel="stylesheet" href="style.css">
|
|
|
+
|
|
|
+<script type="text/javascript">
|
|
|
+
|
|
|
+function navto( url ){
|
|
|
+ document.getElementById( 'content' ).src=url;
|
|
|
+ return false;
|
|
|
+}
|
|
|
+
|
|
|
+window.onload=function(){
|
|
|
+ navto( 'docs.html' );
|
|
|
+}
|
|
|
+
|
|
|
+</script>
|
|
|
+
|
|
|
+</head>
|
|
|
+
|
|
|
+<body class="page_body">
|
|
|
+
|
|
|
+<!-- fixed header -->
|
|
|
+<div class="page_header">
|
|
|
+
|
|
|
+ <span class="header_title_strip">
|
|
|
+
|
|
|
+ <span class="header_logo">
|
|
|
+ <a href="http://monkey2.monkey-x.com"><img src="img/monkey2logo_32.png"></a>
|
|
|
+ </span>
|
|
|
+
|
|
|
+ <span class="header_text">Monkey 2</span>
|
|
|
+
|
|
|
+ </span>
|
|
|
+
|
|
|
+ <span class="header_button_strip">
|
|
|
+
|
|
|
+ <a class="header_button" href="http://monkey2.monkey-x.com">Blog</a></button>
|
|
|
+ <a class="header_button" href="http://monkey2.monkey-x.com/monkey2-files">Files</a>
|
|
|
+ <a class="header_button" href="http://monkey2.monkey-x.com/forums">Forums</a>
|
|
|
+ <a class="header_button" href="http://monkey2.monkey-x.com/about-monkey-2">About</a>
|
|
|
+
|
|
|
+ </span>
|
|
|
+
|
|
|
+ <span class="header_donate_strip">
|
|
|
+
|
|
|
+ <form class="header_paypal" action='https://www.paypal.com/cgi-bin/webscr' method='post' target='_top'>
|
|
|
+ <input type='hidden' name='cmd' value='_s-xclick'>
|
|
|
+ <input type='hidden' name='hosted_button_id' value='SEPSTY3L7J6B6'>
|
|
|
+ <input type='image' class="header_paypal_button" src="img/btn_donate_SM.gif" border='0' name='submit' alt='PayPal - The safer, easier way to pay online!' style='vertical-align:middle'>
|
|
|
+ </form>
|
|
|
+
|
|
|
+ <a class="header_patreon" href="https://www.patreon.com/monkey2">
|
|
|
+ <img src="img/patreon_20.png">
|
|
|
+ </a>
|
|
|
+
|
|
|
+ </span>
|
|
|
+
|
|
|
+</div>
|
|
|
+<!-- end header -->
|
|
|
+
|
|
|
+<div style="
|
|
|
+ position:relative;
|
|
|
+ top: 40px;
|
|
|
+ width:100%;
|
|
|
+ height: calc( 100% - 40px );
|
|
|
+ ">
|
|
|
+
|
|
|
+<iframe id="content" name="content" href="docs.html" style="
|
|
|
+ display:block;
|
|
|
+ width:100%;
|
|
|
+ height:100%;
|
|
|
+ padding:0;
|
|
|
+ border:0;
|
|
|
+ margin:0;">
|
|
|
+</iframe>
|
|
|
+
|
|
|
+</div>
|
|
|
+
|
|
|
+</body>
|
|
|
+
|
|
|
+</html>
|
|
|
+
|