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

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

added search page link to record page

  • Property svn:executable set to *
File size: 3.7 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3Copyright (C) 2014 CLARIN
4
5This program is free software: you can redistribute it and/or modify
6it under the terms of the GNU General Public License as published by
7the Free Software Foundation, either version 3 of the License, or
8(at your option) any later version.
9
10This program is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13GNU General Public License for more details.
14
15You should have received a copy of the GNU General Public License
16along 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"><a wicket:id="searchLink">Go to the search page for this record</a></li>
60                        <!--<li><a href="">Perform a content search in this record</a></li>-->
61                    </ul>
62                </div>
63
64                <div wicket:id="resources" id="recordresources">[RESOURCES]</div>
65
66                <p id="recordcmditoggle" class="recordtogglelinks">
67                    <a href="#" id="showrecordcmdi" class="recordshowlink">Show all metadata fields</a>
68                    <a href="#" id="hiderecordcmdi" class="recordhidelink">Hide all metadata fields</a>
69                </p>
70                <div wicket:id="cmdi" id="recordcmdi">[CMDI metadata]</div>
71
72                <p id="recordtechnicaldetailstoggle" class="recordtogglelinks">
73                    <a href="#" id="showrecordtechnicaldetails" class="recordshowlink">Show technical details</a>
74                    <a href="#" id="hiderecordtechnicaldetails" class="recordhidelink">Hide technical details</a>
75                </p>
76                <div id="recordtechnicaldetails">
77                    <h2>Technical details</h2>
78
79                    <div id="recordtechnicalattributes">
80                        <wicket:container wicket:id="technicalProperties">[PROPERTIES TABLE]</wicket:container>
81                    </div>
82                </div> <!-- recordtechnicaldetails -->
83            </div>
84        </wicket:extend>
85    </body>
86</html>
Note: See TracBrowser for help on using the repository browser.