aboutsummaryrefslogtreecommitdiff
path: root/node_modules/typedoc-default-themes/bin/default/partials/breadcrumb.hbs
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/typedoc-default-themes/bin/default/partials/breadcrumb.hbs')
-rw-r--r--node_modules/typedoc-default-themes/bin/default/partials/breadcrumb.hbs16
1 files changed, 16 insertions, 0 deletions
diff --git a/node_modules/typedoc-default-themes/bin/default/partials/breadcrumb.hbs b/node_modules/typedoc-default-themes/bin/default/partials/breadcrumb.hbs
new file mode 100644
index 000000000..319741831
--- /dev/null
+++ b/node_modules/typedoc-default-themes/bin/default/partials/breadcrumb.hbs
@@ -0,0 +1,16 @@
+{{#if parent}}
+ {{#with parent}}{{> breadcrumb}}{{/with}}
+ <li>
+ {{#if url}}
+ <a href="{{relativeURL url}}">{{name}}</a>
+ {{else}}
+ <span>{{name}}</span>
+ {{/if}}
+ </li>
+{{else}}
+ {{#if url}}
+ <li>
+ <a href="{{relativeURL url}}">Globals</a>
+ </li>
+ {{/if}}
+{{/if}} \ No newline at end of file