docs.mibew.org/templates/menu.handlebars
2015-04-14 13:21:46 +00:00

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