mirror of
https://github.com/Mibew/docs.mibew.org.git
synced 2025-03-21 21:21:35 +03:00
11 lines
332 B
Handlebars
11 lines
332 B
Handlebars
{{#if this}}
|
|
<ul class="nav nav-stacked nav-left-indent">
|
|
{{#each this}}
|
|
<li>
|
|
<a href="{{@root.baseUrl}}/{{path}}">{{#if file.title}}{{file.title}}{{else}}{{name}}{{/if}}</a>
|
|
{{! Render nested menu levels}}
|
|
{{> menu children}}
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
{{/if}} |