liebling/partials/search.hbs

21 lines
742 B
Handlebars
Raw Normal View History

2019-04-14 18:41:25 +00:00
{{!--
This search template is used to display the search form.
You need to create a custom integration first to get a Content API key and then
follow the instructions to enable the search feature.
--}}
2019-03-12 10:39:01 +00:00
<div class="m-search js-search">
2019-02-20 12:13:59 +00:00
<button class="m-icon-button outlined as-close-search js-close-search" aria-label="Close search">
<span class="icon-close"></span>
</button>
<div class="m-search__content">
<form class="m-search__form">
<fieldset>
<span class="icon-search m-search-icon"></span>
<input type="text" class="m-input in-search js-input-search" placeholder="Type to search" aria-label="Type to search">
2019-02-20 12:13:59 +00:00
</fieldset>
</form>
2019-02-21 16:19:38 +00:00
<div class="js-search-results"></div>
2019-02-20 12:13:59 +00:00
</div>
2019-03-12 10:39:01 +00:00
</div>