forked from blakadder/templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.html
33 lines (33 loc) · 1.01 KB
/
search.html
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
28
29
30
31
32
33
---
layout: default
title: Search Templates
---
<div class="container">
<div class="row">
<div class="column">
<h1>{{ page.title }}</h1>
</div>
</div>
<div class="row">
<div class="column">
{% include search.html %}
</div>
</div>
<div class="row">
<div class="column">
<div class="instructions" id="instructions">
<br>
<strong>Search bar searches as you type. There might be a delay depending on the results included!</strong>
<BR><br>
To search exact match use `+`
<br>
For example: `+mini +sonoff ` will show only devices with "Mini" and "Sonoff" in their name.
<br><br>
You can exclude any term from search results with `-`.
<br>
For example: `mini -sonoff ` will show all devices named "Mini" that don't have "Sonoff" in their name.
</div>
{% include search-results.html %}
</div>
</div>
</div>