...
The selector for this component is <hawksearch-search-results-list>
.
Data Model
The following data model is exposed to the Handlebars template:
...
Code Block | ||
---|---|---|
| ||
<div class="row search-results-list"> {{#each items}} {{#if (eq type "content")}} <div class="column column--12"> <hawksearch-search-results-item></hawksearch-search-results-item> </div> {{else}} <div class="column column--12 column-sm--6 column-lg--4"> <hawksearch-search-results-item></hawksearch-search-results-item> </div> {{/if}} {{/each}} </div> |
...