index.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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( 'newdocs.html' );
  14. }
  15. </script>
  16. </head>
  17. <body class="page_body">
  18. <!-- fixed header -->
  19. <div class="page_header">
  20. <span class="header_title_strip">
  21. <span class="header_logo">
  22. <a href="http://monkeycoder.co.nz"><img src="img/monkey2logo_32.png"></a>
  23. </span>
  24. <span class="header_text">Monkey 2</span>
  25. </span>
  26. <span class="header_button_strip">
  27. <a class="header_button" href="http://monkeycoder.co.nz">Blog</a></button>
  28. <a class="header_button" href="http://monkeycoder.co.nz/monkey2-files">Files</a>
  29. <a class="header_button" href="http://monkeycoder.co.nz/forums">Forums</a>
  30. <a class="header_button" href="http://monkeycoder.co.nz/about-monkey-2">About</a>
  31. </span>
  32. <span 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' 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'>
  37. </form>
  38. <a class="header_patreon" href="https://www.patreon.com/monkey2">
  39. <img src="img/patreon_20.png">
  40. </a>
  41. </span>
  42. </div>
  43. <!-- end header -->
  44. <div style="
  45. position:relative;
  46. top: 40px;
  47. width:100%;
  48. height: calc( 100% - 40px );
  49. ">
  50. <iframe id="content" name="content" href="docs.html" style="
  51. display:block;
  52. width:100%;
  53. height:100%;
  54. padding:0;
  55. border:0;
  56. margin:0;">
  57. </iframe>
  58. </div>
  59. </body>
  60. </html>