layout.tmpl 866 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title><?js= title || 'Home' ?> - Three.js Docs</title>
  6. <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
  7. <script src="../scripts/highlight.min.js"></script>
  8. <link type="text/css" rel="stylesheet" href="../styles/highlight-three.css">
  9. <link type="text/css" rel="stylesheet" href="../styles/page.css">
  10. </head>
  11. <body>
  12. <?js if (augments && augments.length) {
  13. var self = this;
  14. ?>
  15. <p class="inheritance" translate="no"><?js augments.forEach(function(a, i) { ?><?js= self.linkto(a, a) ?><?js if (i < augments.length - 1) { ?> → <?js } ?><?js }); ?> → </p>
  16. <?js } ?>
  17. <h1 translate="no"><?js= title ?></h1>
  18. <?js= content ?>
  19. <script src="../scripts/linenumber.js"></script>
  20. <script src="../scripts/page.js"></script>
  21. </body>
  22. </html>
粤ICP备19079148号