1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
2 | <!-- |
---|
3 | Copyright (C) 2014 CLARIN |
---|
4 | |
---|
5 | This program is free software: you can redistribute it and/or modify |
---|
6 | it under the terms of the GNU 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. |
---|
9 | |
---|
10 | This program 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 General Public License for more details. |
---|
14 | |
---|
15 | You should have received a copy of the GNU General Public License |
---|
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
---|
17 | --> |
---|
18 | |
---|
19 | <!-- |
---|
20 | Created on : Jan 27, 2014, 5:10:53 PM |
---|
21 | Author : twagoo |
---|
22 | |
---|
23 | Based on "business one" template: http://www.opendesigns.org/design/business_one/ |
---|
24 | --> |
---|
25 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
---|
26 | <html xmlns="http://www.w3.org/1999/xhtml" xmlns:wicket="http://wicket.apache.org" xml:lang="en"> |
---|
27 | |
---|
28 | <head> |
---|
29 | <title>CLARIN VLO</title> |
---|
30 | </head> |
---|
31 | |
---|
32 | <body> |
---|
33 | |
---|
34 | <wicket:extend> |
---|
35 | <div wicket:id="topnavigation" id="topnavigation"> |
---|
36 | <div wicket:id="breadcrumbs" id="breadcrumbs"> |
---|
37 | [BREADCRUMBS] |
---|
38 | </div> |
---|
39 | <div id="topnavigationlinks"> |
---|
40 | <wicket:container wicket:id="permalink">[permalink]</wicket:container> |
---|
41 | <!--<a id="help" href="" title="Help"><span>[Help]</span></a>--> |
---|
42 | </div> |
---|
43 | </div> |
---|
44 | |
---|
45 | <div class="content" id="record"> |
---|
46 | |
---|
47 | <wicket:container wicket:id="navigation"></wicket:container> |
---|
48 | |
---|
49 | <h1 wicket:id="name" id="recordtitle">[TITLE]</h1> |
---|
50 | |
---|
51 | <div id="recorddetails"> |
---|
52 | <a wicket:id="landingPageLink" id="recordlandingpage">Show this record in its original context</a> |
---|
53 | <wicket:container wicket:id="documentProperties">[PROPERTIES TABLE]</wicket:container> |
---|
54 | </div> |
---|
55 | |
---|
56 | <div wicket:id="searchlinks" id="recordsearchpage"> |
---|
57 | <h2>Search</h2> |
---|
58 | <ul> |
---|
59 | <li wicket:id="searchPage"> |
---|
60 | <a wicket:id="searchLink">Search page for this record</a> |
---|
61 | </li> |
---|
62 | <li wicket:id="contentSearch"> |
---|
63 | <form id="contentSearchForm" wicket:id="fcsForm" method="post" name="fcsForm" target="_blank" action="[Aggregator endpoint]"> |
---|
64 | <fieldset style="border:0px;"> |
---|
65 | <input type="hidden" name="query" id="query" value="" /> |
---|
66 | <input wicket:id="aggregationContent" type="hidden" name="x-aggregation-context" value='[Endpoint/ID JSON]' /> |
---|
67 | <input type="hidden" name="operation" value="searchRetrieve" /> |
---|
68 | <input type="hidden" name="version" value="1.2" /> |
---|
69 | </fieldset> |
---|
70 | </form> |
---|
71 | <a href="#" onclick="document.fcsForm.submit();">Plain text search via Federated Content Search</a> |
---|
72 | </li> |
---|
73 | </ul> |
---|
74 | </div> |
---|
75 | |
---|
76 | <div wicket:id="resources" id="recordresources">[RESOURCES]</div> |
---|
77 | |
---|
78 | <p id="recordcmditoggle" class="recordtogglelinks"> |
---|
79 | <a href="#" id="showrecordcmdi" class="recordshowlink">Show all metadata fields</a> |
---|
80 | <a href="#" id="hiderecordcmdi" class="recordhidelink">Hide all metadata fields</a> |
---|
81 | </p> |
---|
82 | <div wicket:id="cmdi" id="recordcmdi">[CMDI metadata]</div> |
---|
83 | |
---|
84 | <p id="recordtechnicaldetailstoggle" class="recordtogglelinks"> |
---|
85 | <a href="#" id="showrecordtechnicaldetails" class="recordshowlink">Show technical details</a> |
---|
86 | <a href="#" id="hiderecordtechnicaldetails" class="recordhidelink">Hide technical details</a> |
---|
87 | </p> |
---|
88 | <div id="recordtechnicaldetails"> |
---|
89 | <h2>Technical details</h2> |
---|
90 | |
---|
91 | <div id="recordtechnicalattributes"> |
---|
92 | <wicket:container wicket:id="technicalProperties">[PROPERTIES TABLE]</wicket:container> |
---|
93 | </div> |
---|
94 | </div> <!-- recordtechnicaldetails --> |
---|
95 | </div> |
---|
96 | </wicket:extend> |
---|
97 | </body> |
---|
98 | </html> |
---|