]> git.plutz.net Git - serve0/blob - templates/list.html.sh
basics for indexed browsing
[serve0] / templates / list.html.sh
1 # Copyright 2014 - 2016 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="o" value="${order}">
51     <input type="hidden" name="s" value="${search}">
52     <input type="hidden" name="f" value="${filter}">
53     <input type="hidden" name="pn" value="${page}">
54
55     <ul id="thumblist">
56 EOF
57
58   thumblist
59
60   pages="$(
61   seq 1 $(pagecount) \
62   | while read pn; do
63     plink="$(($pn * $pagesize - $pagesize + 1))"
64     
65     case "$plink" in
66       $(($page - $pagesize))) class=previous;;
67       $page) class=current;;
68       $(($page + $pagesize))) class=next;;
69       * ) class='';;
70     esac
71   
72     printf '<a class="%s" href="?%spn=%s">%s</a>\n' "$class" "$page_link" "$plink" "$pn"
73   done
74   )"
75
76 cat <<EOF
77     </ul>
78     $(. $_EXEC/templates/tagger.html.sh)
79   </form>
80
81   <div class="panel" id="foot">
82     <a class="panel toggle" href="#tagger">Add Tags</a>
83     <a class="panel toggle" href="#">⇧</a>
84
85     <div class="pagination_nav">
86       <label>Page:</label>
87       ${pages}
88     </div>
89   </div>
90
91 EOF
92
93 # vi:set filetype=html: