index.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Monkey2 Documentation</title>
  5. <link rel="stylesheet" href="js-treeview/treeview.css">
  6. <link rel="stylesheet" href="style.css">
  7. <script type="text/javascript">
  8. function navto( url ){
  9. document.getElementById( 'content' ).src=url;
  10. return false;
  11. }
  12. window.onload=function(){
  13. navto( 'manuals.html' );
  14. }
  15. </script>
  16. </head>
  17. <body class="page_body" style="overflow:hidden">
  18. <!-- header -->
  19. <div class="page_header">
  20. <div class="header_title_strip">
  21. <div class="header_logo">
  22. <a href="http://monkey2.monkey-x.com">
  23. <img src="img/monkey2-logo-48.png" style="vertical-align:middle">
  24. </a>
  25. </div>
  26. <div class="header_text">&nbsp;Monkey 2</div>
  27. </div>
  28. <div class="header_button_strip">
  29. <a class="header_button" href="javascript:void;" onclick="document.getElementById( 'content' ).src='modules.html';">Modules</a>
  30. <a class="header_button" href="javascript:void;" onclick="document.getElementById( 'content' ).src='manuals.html';">Manuals</a>
  31. </div>
  32. <div class="header_donate_strip">
  33. <form class="header_paypal" action='https://www.paypal.com/cgi-bin/webscr' method='post' target='_top'>
  34. <input type='hidden' name='cmd' value='_s-xclick'>
  35. <input type='hidden' name='hosted_button_id' value='SEPSTY3L7J6B6'>
  36. <input type='image' src='https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif' border='0' name='submit' alt='PayPal - The safer, easier way to pay online!' style='vertical-align:middle'>
  37. </form>
  38. &nbsp;
  39. <a class="header_patreon" href="https://www.patreon.com/monkey2">
  40. <img src="img/patreon_20.png" style="position:relative; top:5px;">
  41. </a>
  42. </div>
  43. </div>
  44. <!-- content -->
  45. <div class="page_content">
  46. <iframe id="content" name="content" href="manuals.html" class="modules_docs_iframe"></iframe>
  47. </div>
  48. </body>
  49. </html>