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