-
Notifications
You must be signed in to change notification settings - Fork 0
/
search_form.html
34 lines (34 loc) · 1.57 KB
/
search_form.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
34
<?xml version="1.0" encoding="UTF-8"?>
<div xmlns="http://www.w3.org/1999/xhtml" data-template="templates:surround" data-template-with="templates/page.html" data-template-at="content">
<article id="main">
<header>
<h2>
<div>Fulltext Search</div>
</h2>
</header>
<section class="wrapper style5">
<div class="inner">
<section>
<form method="post" action="search.html">
<input type="text" name="query" class="fulltext_query" size="20" style="border:1px solid #ccc"/>
<input type="submit" class="special" value="search"/>
</form>
</section>
</div>
<div class="inner" style="margin-bottom:50rem;">
<p>
<b>Search tips</b>:</p>
<dl>
<dt>cat</dt>
<dd>searches for word 'cat'</dd>
<dt>cat*</dt>
<dd>searches for words that start with 'cat', finds 'cats' as well</dd>
<dt>European cat</dt>
<dd>searches for text with either 'European' or 'cat'</dd>
<dt>"European cat"</dt>
<dd>searches for texts with string "European cat"</dd>
</dl>
</div>
</section>
</article>
</div>