1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-23 15:19:42 +02:00
documize/gui/app/templates/components/folder/document-categories.hbs

11 lines
247 B
Handlebars
Raw Normal View History

{{#if categories}}
{{#each categories as |cat|}}
2019-01-23 15:46:27 +00:00
{{#if cat}}
<div class="category">
2022-03-08 12:16:36 -05:00
<i class="dicon {{constants.Icon.Category}}" title={{localize 'category'}} />
2019-01-23 15:46:27 +00:00
<div class="name">{{cat}}</div>
</div>
{{/if}}
{{/each}}
2022-01-11 12:40:52 -05:00
{{/if}}