enable translation facets sidebar test
[mkws-moved-to-github.git] / src / templates / facet.handlebars
1 {{!
2 A facet in the search.
3
4 name - facet identifier, typically English and lowercase
5 caption - caption for this facet
6 terms:
7   term - term name
8   count - count of items matching in the current search for this team
9   linkdata - attributes to add to the term element including an onclick handler
10   field - for the xtargets facet ONLY, the opaque identifier of the target
11 }}
12
13 <div class="mkws-facet-title mkwsFacetTitle">{{mkws-translate caption}}</div>
14 {{#each terms}}
15   <div class="mkws-term mkwsTerm">
16     <a href="#" {{{linkdata}}}>{{term}}</a> <span>{{count}}</span>
17   </div>
18 {{/each}}