CLEANUP: removed all unused handlebars helpers REFACTOR: removed 'unbound' prefix (for performance reasons, helpers are unbound by default) REFACTOR: added 'bound' prefix to bound helpers REFACTOR: renamed helper using 'foo-bar-foo' syntax (instead of camel case)
13 lines
396 B
Handlebars
13 lines
396 B
Handlebars
{{bread-crumbs categories=categories}}
|
|
|
|
<ul class="nav nav-pills" id='navigation-bar'>
|
|
{{#each navItem in navItems}}
|
|
{{navigation-item content=navItem filterMode=filterMode}}
|
|
{{/each}}
|
|
{{custom-html "extraNavItem"}}
|
|
</ul>
|
|
|
|
{{#if canCreateTopic}}
|
|
<button id="create-topic" class='btn btn-default' {{action createTopic}}><i class='fa fa-plus'></i>{{i18n topic.create}}</button>
|
|
{{/if}}
|