forked from yolabingo/dotcms-htmx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
site-search.vtl
27 lines (27 loc) · 1.13 KB
/
site-search.vtl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!-- /application/vtl/site-search/site-search.vtl -->
<div class="row justify-content-around">
#set($title = "What are you looking for?")
<div class="col-lg-8 my-5">
<p class="no-results-title">$title</p>
<form action="javascript:void(0);" class="search-body">
<div class="row">
<div class="col-sm-10">
<input id="search-input-body"
name="q"
type="text"
autocomplete="off"
class="form-control input-lg"
placeholder="Search..."
hx-get="/search/search-results"
hx-target="#search-results-htmx"
hx-indicator=".htmx-indicator"
hx-trigger="keyup changed delay:500ms, search">
</div>
</div>
</form>
<span class="htmx-indicator">
<img src="/application/themes/travel/images/spinner.gif"/> Searching...
</span>
<span id="search-results-htmx"></span>
</div>
</div>