This uses proper paths with slashes everywhere, and lists documents instead of just folders for root.
9 lines
218 B
Handlebars
9 lines
218 B
Handlebars
{{#if categories}}
|
|
<nav>
|
|
<ul>
|
|
{{#each categories as |category|}}
|
|
<li>{{#link-to "index" (query-params path=category.path)}}{{category.name}}{{/link-to}}</li>
|
|
{{/each}}
|
|
</ul>
|
|
</nav>
|
|
{{/if}} |