1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <!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( 'newdocs.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://monkeycoder.co.nz"><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://monkeycoder.co.nz">Blog</a></button>
- <a class="header_button" href="http://monkeycoder.co.nz/monkey2-files">Files</a>
- <a class="header_button" href="http://monkeycoder.co.nz/forums">Forums</a>
- <a class="header_button" href="http://monkeycoder.co.nz/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>
|