docs.mibew.org/templates/menu.handlebars
Dmitriy Simushev f79432ab82 Initial commit
2015-04-10 15:27:10 +00:00

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}}