layout.tmpl 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <?js
  2. var templates = env.conf.templates;
  3. var examples = env.conf.opts.tutorials;
  4. var css = templates.css;
  5. var logo = templates.logo;
  6. var footerText = templates.footerText;
  7. var logoUrl = 'img/toast-ui.png';
  8. var width, height;
  9. var name = templates.name || package.name || title;
  10. var tutorialsName = templates.tabNames.tutorials;
  11. var apiName = templates.tabNames.api;
  12. var style = '';
  13. var version = '';
  14. var logoLink = '';
  15. if (logo) {
  16. logoUrl = logo.url || logoUrl;
  17. logoLink = logo.link || logoLink;
  18. width = logo.width;
  19. height = logo.height;
  20. }
  21. if (width) {
  22. style += 'width: ' + width;
  23. }
  24. if (height) {
  25. style += '; height: ' + height;
  26. }
  27. if (package) {
  28. version = package.version;
  29. }
  30. ?>
  31. <!DOCTYPE html>
  32. <html lang="en">
  33. <head>
  34. <meta charset="utf-8">
  35. <title><?js= title + ' | ' + name ?></title>
  36. <script src="scripts/prettify/prettify.js"> </script>
  37. <script src="scripts/prettify/lang-css.js"> </script>
  38. <!--[if lt IE 9]>
  39. <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  40. <![endif]-->
  41. <link type="text/css" rel="stylesheet" href="styles/bootstrap.min.css">
  42. <link type="text/css" rel="stylesheet" href="styles/prettify-jsdoc.css">
  43. <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
  44. <link type="text/css" rel="stylesheet" href="styles/tui-doc.css">
  45. <?js if (css) { ?>
  46. <?js css.forEach(function(style) { ?>
  47. <link type="text/css" rel="stylesheet" href="<?js= style ?>">
  48. <?js }) ?>
  49. <?js } ?>
  50. </head>
  51. <body>
  52. <nav class="lnb" id="lnb">
  53. <div class="logo" style="<?js= style ?>">
  54. <?js if (logoLink) { ?>
  55. <a href="<?js= logoLink?>" rel="noopener noreferrer" target="_blank">
  56. <img src="<?js= logoUrl?>" width="100%" height="100%">
  57. </a>
  58. <?js } else { ?>
  59. <img src="<?js= logoUrl?>" width="100%" height="100%">
  60. <?js } ?>
  61. </div>
  62. <div class="title">
  63. <h1><a href="index.html" class="link"><?js= name ?></a></h1>
  64. <?js if (version) { ?>
  65. <span class="version">v<?js= version ?></span>
  66. <?js } ?>
  67. </div>
  68. <div class="search-container" id="search-container">
  69. <input type="text" placeholder="Search">
  70. <ul></ul>
  71. </div>
  72. <?js if (examples) { ?>
  73. <ol class="lnb-tab">
  74. <li id="api-tab">
  75. <a href="#"><h4><?js= apiName ?></h4></a>
  76. </li>
  77. <li id="examples-tab">
  78. <a href="#"><h4><?js= tutorialsName ?></h4></a>
  79. </li>
  80. </ol>
  81. <?js } ?>
  82. <?js= this.nav ?>
  83. </nav>
  84. <div id="resizer"></div>
  85. <div class="main" id="main">
  86. <?js= content ?>
  87. </div>
  88. <footer>
  89. <img class="logo" src="<?js= logoUrl?>" style="<?js= style ?>">
  90. <div class="footer-text"><?js= footerText || 'NHN Entertainment. Frontend Development Lab' ?></div>
  91. </footer>
  92. <script>prettyPrint();</script>
  93. <script src="scripts/jquery.min.js"></script>
  94. <script src="scripts/tui-doc.js"></script>
  95. <script src="scripts/linenumber.js"></script>
  96. <?js if (!isTutorial) { ?>
  97. <script>
  98. var id = '<?js= docs[0].longname ?>_sub'.replace(/"/g, '_');
  99. var selectedApi = document.getElementById(id); // do not use jquery selector
  100. var $selectedApi = $(selectedApi);
  101. $selectedApi.removeClass('hidden');
  102. $selectedApi.parent().find('.glyphicon').removeClass('glyphicon-plus').addClass('glyphicon-minus');
  103. showLnbApi();
  104. </script>
  105. <?js } else { ?>
  106. <script>
  107. showLnbExamples();
  108. </script>
  109. <?js } ?>
  110. </body>
  111. </html>