Newer
Older
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
35
36
37
38
39
40
41
42
43
44
{{template "_head.html" .}}
{{if .Query}}
<h1>
Search results for "{{.Query}}"
</h1>
{{if .Results}}
<p>
Showing results
<b>{{.Pagination.Start}}</b>-<b>{{.Pagination.End}}</b>
of <b>{{.Pagination.Total}}</b>.
</p>
<ul class="book-group">
{{range .Results}}
{{template "_book.html" .}}
{{end}}
</ul>
<p style="text-align:center">
{{if not .Pagination.IsFirstPage}}
<a href="?q={{.Query}}&p={{.Pagination.Prev}}">Previous</a>
{{end}}
{{if not .Pagination.IsLastPage}}
<a href="?q={{.Query}}&p={{.Pagination.Next}}">Next</a>
{{end}}
</p>
{{else}}
<p>
No results found.
</p>
{{end}}
{{else}}
<h1>Search</h1>
<p>Search for something using the box at the top of the page.</p>
{{end}}
{{template "_footer.html" .}}