Search
URL
/app/search
Screenshot
Structure
search.html.liquid
├── _header.html.liquid
├── _filter_dropdown.html.liquid
│ └── _filter_select.html.liquid
├── _search_result.html.liquid
├── _search_zero_state.html.liquid
└── _footer.html.liquid
Template Considerations
The Search template exposes a results
variable with the following structure:
name | type |
---|---|
count | number |
term | string |
items | array [SearchResult] |
filters | array [Filter] |
The SearchResult entity has the following structure:
The Filter entity has the following structure:
name | type |
---|---|
id | uuid |
name | string |
selected | boolean |
Updated 15 days ago