]> git.plutz.net Git - serve0/blob - templates/list.html.sh
styling for pagination links
[serve0] / templates / list.html.sh
1 # Copyright 2014 - 2017 Paul Hänsch
2 #
3 # This file is part of Serve0
4
5 # Serve0 is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9
10 # Serve0 is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU Affero General Public License for more details.
14
15 # You should have received a copy of the GNU Affero General Public License
16 # along with Serve0  If not, see <http://www.gnu.org/licenses/>. 
17
18 cat <<EOF
19
20   <input type=radio name=topmenu id=btn_search checked><label for=btn_search>Search</label>
21   <form class="panel" id="search" action="?" method="get" accept-charset="UTF-8">
22     <input type="text" name="s" value="$search" placeholder="Search">
23
24     <select class="order" size="1" name="o" id="o1">
25       <option class="label" selected disabled>Order by</option>
26       <option>Name</option>
27       <option>Date</option>
28       <option>Length</option>
29     </select>
30     <!-- input type="submit" name="submit" value="Find" -->
31
32     <a class="panel clearsearch" href="?">Clear</a>
33   </form>
34
35   <input type=radio name=topmenu id=btn_advfilter><label for=btn_advfilter>Advanced</label>
36   $(. $_EXEC/templates/advfilter.html.sh)
37
38   <input type=radio name=topmenu id=btn_preferences><label for=btn_preferences>Preferences</label>
39   $(. $_EXEC/templates/preferences.html.sh)
40
41   <input type=radio name=topmenu id=btn_morelinks><label for=btn_morelinks>{+}</label>
42   <div class="panel switchable top" id="morelinks">
43     <a class="panel toggle" href="#">Hide</a>
44
45     <a class="panel treeview" href="?p=browse">Browse Folders</a>
46     <a class="panel" href="?p=playctl">Player</a>
47   </div>
48
49   <form action="?action=multitag" method="post" accept-charset="UTF-8">
50     <input type="hidden" name="page" value="?$(attribsafe "${page_this}")">
51
52     <ul id="thumblist">
53 EOF
54
55   thumblist
56
57   pages="$(
58   seq 1 $(pagecount) \
59   | while read pn; do
60     plink="$(($pn * $pagesize - $pagesize + 1))"
61     
62     case "$plink" in
63       ($(($page - $pagesize))) class=previous;;
64       ($page) class=current;;
65       ($(($page + $pagesize))) class=next;;
66       (*) class='';;
67     esac
68   
69     printf '<a class="%s" href="?%spn=%s">%s</a>\n' "$class" "$page_link" "$plink" "$pn"
70   done
71   )"
72
73 cat <<EOF
74     </ul>
75     $(. $_EXEC/templates/tagger.html.sh)
76   </form>
77
78   <div class="panel" id="foot">
79     <a class="panel toggle" href="#tagger">Add Tags</a>
80     <a class="panel toggle" href="#">⇧</a>
81
82     <div class="pagination_nav">
83       <label>Page:</label>
84       ${pages}
85     </div>
86   </div>
87
88 EOF
89
90 # vi:set filetype=html: