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

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

Started the 'simple search' page, which becomes the front page of the VLO

File size: 4.8 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 wicket:id="breadcrumbs" id="breadcrumbs">[BREADCRUMBS]</div>-->
38                <div id="breadcrumbs"><wicket:link><a href="SimpleSearchPage.html">VLO</a></wicket:link></div>
39                <div id="topnavigationlinks">
40                    <wicket:container wicket:id="topLinks">[permalink]</wicket:container>
41                    <!--<a id="help" href="" title="Help"><span>[Help]</span></a>-->
42                </div>
43            </div>
44
45            <div class="topbar" id="collections">
46                <div class="rtop"><div class="r1"></div><div class="r2"></div><div class="r3"></div><div class="r4"></div></div>
47                <div wicket:id="collectionsFacet">[COLLECTIONS]</div>
48                <!--                <p>
49                                    Searching in all collections (604056 records).
50                                </p>-->
51                <div class="rbottom"><div class="r4"></div><div class="r3"></div><div class="r2"></div><div class="r1"></div></div>
52            </div>
53
54            <div class="content">
55                <h1>Search</h1>
56                <form wicket:id="search" action="" id="search">
57                    <p>
58                        <span id="searchcontrols">
59                            <input wicket:id="query" id="searchbox" type="text" value="democratie" />
60                            <input wicket:id="searchSubmit" id="searchbutton" type="submit" value="Search"/>
61                        </span>
62                    </p>
63                </form>
64                <h1>Browse</h1>
65                <p>
66                    <a href="index2.html">All 604056 records</a> | filter by: <a id="filterlanguage" href="">Language</a>
67                    | <a href="">Type</a> 
68                    | <a href="">Genre</a>
69                    | <a href="">National project</a> 
70                    | <a href="index2.html">Other</a>
71                </p>
72
73                <div id="frontfacets">
74                    <div class="facet" id="facetlanguage">
75                        <a href class="filtertoggle"><span>filter</span></a>
76                        <form class="filterform">
77                            <p>
78                                Select a <em>language</em> to filter by or type to search for more:
79                                <input type="text" />
80                            </p>
81                        </form>
82                        <div class="sbilinks facetvalues">
83                            <ul>
84                                <li><a href="index3.html">Dutch (148167)</a></li>
85                                <li><a href="index3.html">English (72547)</a></li>
86                                <li><a href="index3.html">German (39042)</a></li>
87                                <li><a href="index3.html">French (9227)</a></li>
88                                <li><a href="index3.html">Spanish; Castilian (8684)</a></li>
89                                <li><a href="index3.html">Danish (8447)</a></li>
90                                <li><a href="index3.html">Japanese (6761)</a></li>
91                                <li><a href="index3.html">Turkish (4988)</a></li>
92                                <li><a href="index3.html">Chinese (1980)</a></li>
93                                <li class="more-link"><a href="#">more...</a></li>
94                            </ul>
95                        </div>
96                    </div>
97                </div>
98            </div>
99
100            <!--            <div class="sidebar">
101           
102                            <div wicket:id="facets"></div>
103           
104                        </div>-->
105        </wicket:extend>
106    </body>
107</html>
Note: See TracBrowser for help on using the repository browser.