49 lines
1.3 KiB
Handlebars
49 lines
1.3 KiB
Handlebars
{{page-title 'Engineering Docs - Consul' separator=' - '}}
|
|
|
|
{{document-attrs class="is-debug"}}
|
|
<App class="docs" id="wrapper">
|
|
<:main-nav>
|
|
|
|
<DocfyOutput as |node|>
|
|
<ul>
|
|
<li role="separator">Docs</li>
|
|
{{#each node.children as |child|}}
|
|
{{#each child.pages as |child|}}
|
|
<li
|
|
class={{if (is-href (to-route child.url)) 'is-active'}}
|
|
>
|
|
<DocfyLink @to={{child.url}}>
|
|
{{classify child.title}}
|
|
</DocfyLink>
|
|
</li>
|
|
{{/each}}
|
|
{{#each child.children as |section|}}
|
|
<li role="separator">{{section.label}}</li>
|
|
{{#each (flatten-property section 'pages') as |child|}}
|
|
<li
|
|
class={{concat
|
|
(slugify section.label) ' '
|
|
(if (eq child.frontmatter.class 'ember') 'ember-component') ' '
|
|
(if (eq child.frontmatter.class 'css') 'css-component') ' '
|
|
(if (is-href (to-route child.url)) 'is-active')
|
|
}}
|
|
>
|
|
<DocfyLink @to={{child.url}}>
|
|
{{classify child.title}}
|
|
</DocfyLink>
|
|
</li>
|
|
{{/each}}
|
|
{{/each}}
|
|
{{/each}}
|
|
</ul>
|
|
</DocfyOutput>
|
|
|
|
</:main-nav>
|
|
<:main>
|
|
<DocfyOutput @fromCurrentURL={{true}} as |page|>
|
|
{{outlet}}
|
|
</DocfyOutput>
|
|
</:main>
|
|
</App>
|
|
|