docs.mibew.org/templates/menu.handlebars

11 lines
285 B
Handlebars
Raw Normal View History

2015-04-10 18:22:39 +03:00
{{#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}}