]> git.plutz.net Git - serve0/blob - templates/tree.html.sh
1b2a38a18cc4a9ad841225f76119dc91b0985044
[serve0] / templates / tree.html.sh
1 # Copyright 2014, 2015 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   <form class="panel" id="search" action="?" method="get" accept-charset="UTF-8">
20     <input type="text" name="s" value="$search" placeholder="Search">
21     <input type="submit" name="submit" value="Find">
22
23     <a class="panel clearsearch" href="?p=tree">Clear All</a>
24     <a class="panel toggle" href="#playctl">Player</a>
25   </form>
26
27   $(. $_EXEC/templates/playpanel.html.sh)
28
29   <form action="?action=multitag&${page_this}" method="post" accept-charset="UTF-8">
30     <ul id="thumblist">
31       $(filelist)
32     </ul>
33     $(. $_EXEC/templates/tagger.html.sh)
34   </form>
35
36   <div class="panel" id="foot">
37     <a class="panel toggle" href="#tagger">Add Tags</a>
38     <a class="panel toggle" href="#preferences">Preferences</a>
39     <a class="panel listview" href="?p=list">Index view</a>
40   </div>
41
42   $(. $_EXEC/templates/preferences.html.sh)
43 EOF
44
45 # vi:set filetype=html: