-
-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy pathapi.hbs
More file actions
25 lines (19 loc) · 598 Bytes
/
api.hbs
File metadata and controls
25 lines (19 loc) · 598 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{{#docs-viewer as |viewer|}}
{{#viewer.nav as |nav|}}
{{!-- Autogenerated API docs --}}
{{#if (gt model.modules.length 0)}}
{{docs-viewer/x-section 'API Reference' style='large'}}
{{#each-in model.navigationIndex as |type items|}}
{{docs-viewer/x-section type}}
{{#each items as |item|}}
{{docs-viewer/x-nav-item (break-on item.name '/') 'api.item' item.path}}
{{/each}}
{{/each-in}}
{{/if}}
{{/viewer.nav}}
{{#viewer.main}}
<div class="docs-container">
{{outlet}}
</div>
{{/viewer.main}}
{{/docs-viewer}}