source: vlo/branches/vlo-3.0/vlo-web-app/src/main/java/eu/clarin/cmdi/vlo/wicket/pages/FacetedSearchPage.html @ 4662

Last change on this file since 4662 was 4662, checked in by Twan Goosen, 10 years ago

created panel for showing all facet values

File size: 4.7 KB
Line 
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<html xmlns="http://www.w3.org/1999/xhtml" xmlns:wicket="http://wicket.apache.org" xml:lang="en">
4    <!--
5    Copyright (C) 2014 CLARIN
6   
7    This program is free software: you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation, either version 3 of the License, or
10    (at your option) any later version.
11   
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for expands.
16   
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19    -->
20
21    <!--
22        Created on : Jan 23, 2014, 5:10:53 PM
23        Author     : twagoo
24   
25        Based on "business one" template: http://www.opendesigns.org/design/business_one/
26    -->
27
28    <head>
29        <title>CLARIN VLO</title>
30    </head>
31
32    <body>
33
34        <wicket:extend>
35
36            <div id="topnavigation">
37                <!--                <div id="breadcrumbs">
38                                    <a href="index.html">VLO</a>
39                                    &gt; Search results: democratie
40                                </div>-->
41                <div id="topnavigationlinks">
42                    <a id="permalink" href="" title="Link to this page"><span>[Link to this page]</span></a>
43                    <!--<a id="help" href="" title="Help"><span>[Help]</span></a>-->
44                </div>
45            </div>
46
47            <div class="topbar" id="collections">
48                <div class="rtop"><div class="r1"></div><div class="r2"></div><div class="r3"></div><div class="r4"></div></div>
49                <div wicket:id="collectionsFacet">[COLLECTIONS]</div>
50                <!--                <p>
51                                    Searching in all collections (604056 records).
52                                </p>-->
53                <div class="rbottom"><div class="r4"></div><div class="r3"></div><div class="r2"></div><div class="r1"></div></div>
54            </div>
55
56            <div class="content">
57                <form wicket:id="search" action="" id="search">
58                    <p>
59                        <span id="searchcontrols">
60                            <input wicket:id="query" id="searchbox" type="text" value="democratie" />
61                            <input wicket:id="searchSubmit" id="searchbutton" type="submit" value="Search"/>
62                        </span>
63                    </p>
64                </form>
65                <div wicket:id="searchResults" id="searchresults">[SEARCH RESULTS]</div>
66            </div>
67
68            <div class="sidebar">
69
70                <div wicket:id="facets"></div>
71
72                <div class="sidebaritem facet collapsedfacet">
73                    <!-- rounded corners - top **** -->
74                    <div class="rtop"><div class="r1"></div><div class="r2"></div><div class="r3"></div><div class="r4"></div></div>
75                    <a href="#" class="expandfacet"><span>expand</span></a>
76                    <a href="#" class="collapsefacet"><span>collapse</span></a>
77                    <h1><a href="#">Search options</a></h1>
78                    <div class="sbilinks facetvalues">
79                        <form id="advancedoptions" action="">
80                            <ul>
81                                <li>
82                                    <input type="checkbox" id="onlyfcs"/>
83                                    <label for="onlyfcs">Only include resources that support content search</label>
84                                </li>
85                                <li>
86                                    <input type="checkbox" id="onlymdformat"/>
87                                    <label for="onlyfcs">Only include resources described with</label>
88                                    <select>
89                                        <option>CMDI</option>
90                                        <option>OLAC</option>
91                                    </select>
92                                </li>
93                            </ul>
94                            <input type="submit" value="Apply" />
95                        </form>
96                    </div>
97                    <!-- rounded corners - bottom **** -->
98                    <div class="rbottom"><div class="r4"></div><div class="r3"></div><div class="r2"></div><div class="r1"></div></div>
99                </div>
100            </div>
101        </wicket:extend>
102    </body>
103</html>
Note: See TracBrowser for help on using the repository browser.