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

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

turned 'browse' section of simple search page into separate panel

File size: 2.9 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 wicket:id="navigation" id="topnavigation">
37                <div id="breadcrumbs"><a wicket:id="breadcrumb" href="SimpleSearchPage.html">VLO</a></div>
38                <div id="topnavigationlinks">
39                    <wicket:container wicket:id="topLinks">[permalink]</wicket:container>
40                    <!--<a id="help" href="" title="Help"><span>[Help]</span></a>-->
41                </div>
42            </div>
43
44            <div class="topbar" id="collections">
45                <div class="rtop"><div class="r1"></div><div class="r2"></div><div class="r3"></div><div class="r4"></div></div>
46                <div wicket:id="collectionsFacet">[COLLECTIONS]</div>
47                <!--                <p>
48                                    Searching in all collections (604056 records).
49                                </p>-->
50                <div class="rbottom"><div class="r4"></div><div class="r3"></div><div class="r2"></div><div class="r1"></div></div>
51            </div>
52
53            <div class="content">
54                <h1>Search</h1>
55                <form wicket:id="search" action="" id="search">
56                    <p>
57                        <span id="searchcontrols">
58                            <input wicket:id="query" id="searchbox" type="text" value="democratie" />
59                            <input wicket:id="searchSubmit" id="searchbutton" type="submit" value="Search"/>
60                        </span>
61                    </p>
62                </form>
63                <h1>Browse</h1>
64                <div wicket:id="browse" id="frontfacets">
65                    [BROWSE]
66                </div>
67            </div>
68
69        </wicket:extend>
70    </body>
71</html>
Note: See TracBrowser for help on using the repository browser.