docs_page_template.html 616 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <link rel="stylesheet" href="../../../../docs/style.css">
  6. <script>
  7. function openDocsPage( page ){
  8. if( page.indexOf( '#' )!=-1 ){
  9. var url='../modules/'+page.replace( ':','/docs/__MANPAGES__/' ).replace( /\#/g,'.md.html#' );
  10. }else{
  11. var url='../modules/'+page.replace( ':','/docs/__PAGES__/' ).replace( /\./g,'-' )+'.html';
  12. }
  13. document.location.href=url;
  14. return false;
  15. }
  16. </script>
  17. </head>
  18. <body class="docs_body">
  19. <div class="docs_content">
  20. <!-- CONTENT -->
  21. ${CONTENT}
  22. <!-- END -->
  23. </div>
  24. </body>
  25. </html>