aboutsummaryrefslogtreecommitdiff
path: root/node_modules/typedoc-default-themes/bin/default/layouts/default.hbs
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/typedoc-default-themes/bin/default/layouts/default.hbs')
-rw-r--r--node_modules/typedoc-default-themes/bin/default/layouts/default.hbs50
1 files changed, 50 insertions, 0 deletions
diff --git a/node_modules/typedoc-default-themes/bin/default/layouts/default.hbs b/node_modules/typedoc-default-themes/bin/default/layouts/default.hbs
new file mode 100644
index 000000000..22e5b4e83
--- /dev/null
+++ b/node_modules/typedoc-default-themes/bin/default/layouts/default.hbs
@@ -0,0 +1,50 @@
+<!doctype html>
+<html class="default no-js">
+<head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <title>{{#ifCond model.name '==' project.name}}{{project.name}}{{else}}{{model.name}} | {{project.name}}{{/ifCond}}</title>
+ <meta name="description" content="">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+
+ <link rel="stylesheet" href="{{relativeURL "assets/css/main.css"}}">
+</head>
+<body>
+
+{{> header}}
+
+<div class="container container-main">
+ <div class="row">
+ <div class="col-8 col-content">
+ {{{contents}}}
+ </div>
+ <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
+ <nav class="tsd-navigation primary">
+ <ul>
+ {{#each navigation.children}}
+ {{> navigation}}
+ {{/each}}
+ </ul>
+ </nav>
+
+ <nav class="tsd-navigation secondary menu-sticky">
+ <ul class="before-current">
+ {{#each toc.children}}
+ {{> toc.root}}
+ {{/each}}
+ </ul>
+ </nav>
+ </div>
+ </div>
+</div>
+
+{{> footer}}
+
+<div class="overlay"></div>
+<script src="{{relativeURL "assets/js/main.js"}}"></script>
+<script>if (location.protocol == 'file:') document.write('<script src="{{relativeURL "assets/js/search.js"}}"><' + '/script>');</script>
+
+{{> analytics}}
+
+</body>
+</html> \ No newline at end of file