1 # Copyright 2015 Paul Hänsch
3 # This file is part of Serve0
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.
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.
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/>.
19 <form class="panel" id="advfilter" style="display: none;"
20 action="?action=filter" method="post" accept-charset="UTF-8">
21 <input disabled type="text" name="s" value="$search" placeholder="Search">
22 <label for="o2" class="order">Order by:</label>
23 <select disabled class="order" size="1" name="o" id="o2">
26 <option>Length</option>
28 <input disabled type="submit" name="submit" value="Find">
30 <a class="panel clearsearch" href="?">Clear All</a>
31 <a class="panel advanced hide" href="#"
32 onclick="javascript:hide('advfilter');$(for n in {1..9}; do echo "hide('filter$n');"; done)show_block('search')"
36 <p class="help">Up to <strong>10</strong> filter boxes will appear as you start selecting tags. You can select <strong>multiple</strong> tags in each box by holding down the <strong>Ctrl</strong>-key. Click the "<strong>Filter!</strong>" button when you are ready.</p>
38 <p class="filter final">
39 <label for="o3" class="order">Order by:</label>
40 <select class="edit order" size="1" name="o" id="o3">
43 <option>Length</option>
45 <input type="submit" value="Filter!">
48 <p class="quicklinks">
49 <label class="quicklinks">Most recent</label>
51 tac ${_DATA}/meta/recent |while [ "$(echo "$output" |wc -l)" -lt 10 ] && read line; do
52 line="<a href="$line">$line</a>"
53 echo "$output" |grep -qF "$line" || output="$output$line\n"
61 <form action="?action=multitag&${page_this}" method="post" accept-charset="UTF-8">
69 # vi:set filetype=html: