1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
---|
3 | <!-- |
---|
4 | Copyright (C) 2014 CLARIN |
---|
5 | |
---|
6 | This program is free software: you can redistribute it and/or modify |
---|
7 | it under the terms of the GNU General Public License as published by |
---|
8 | the Free Software Foundation, either version 3 of the License, or |
---|
9 | (at your option) any later version. |
---|
10 | |
---|
11 | This program is distributed in the hope that it will be useful, |
---|
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
14 | GNU General Public License for more details. |
---|
15 | |
---|
16 | You should have received a copy of the GNU General Public License |
---|
17 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
---|
18 | --> |
---|
19 | <html xmlns="http://www.w3.org/1999/xhtml" xmlns:wicket="http://wicket.apache.org" xml:lang="en"> |
---|
20 | <head> |
---|
21 | <title>facet panel</title> |
---|
22 | <meta charset="UTF-8"> |
---|
23 | </head> |
---|
24 | <body> |
---|
25 | <wicket:panel> |
---|
26 | <h1 wicket:id="title">Search results</h1> |
---|
27 | |
---|
28 | <div id="searchresultsheader"> |
---|
29 | <span wicket:id="resultCount" id="searchresultcount">604056 results</span> |
---|
30 | <span wicket:id="resultPageIndicator" id="searchresultpagecount">Showing 1 to 25</span> |
---|
31 | <div class="searchresultpagination"> |
---|
32 | <div wicket:id="pagingTop">[PAGING]</div> |
---|
33 | </div> |
---|
34 | </div> |
---|
35 | |
---|
36 | <ul id="searchresultitems"> |
---|
37 | <li wicket:id="resultItem" class="searchresultitem"> |
---|
38 | <div wicket:id="resultItemDetails">details</div> |
---|
39 | </li> |
---|
40 | </ul> |
---|
41 | |
---|
42 | <div id="searchresultpagination"> |
---|
43 | <div wicket:id="pagingBottom">[PAGING]</div> |
---|
44 | |
---|
45 | <form wicket:id="resultPageSizeForm" id="resultpagesizeform"> |
---|
46 | <label for="resultpagesize">Results per page:</label> |
---|
47 | <select wicket:id="resultPageSize" id="resultpagesize"> |
---|
48 | <option>5</option> |
---|
49 | <option>10</option> |
---|
50 | <option selected="selected">25</option> |
---|
51 | <option>50</option> |
---|
52 | <option>100</option> |
---|
53 | </select> |
---|
54 | </form> |
---|
55 | </div> |
---|
56 | </wicket:panel> |
---|
57 | </body> |
---|
58 | </html> |
---|