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

Last change on this file since 4733 was 4733, checked in by Twan Goosen, 11 years ago

permalink in record page

  • Property svn:executable set to *
File size: 3.3 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                <h1 wicket:id="name" id="recordtitle">[TITLE]</h1>
49                <div id="recorddetails">
50                    <a wicket:id="landingPageLink" id="recordlandingpage">Show this record in its original context</a>
51                    <wicket:container wicket:id="documentProperties">[PROPERTIES TABLE]</wicket:container>
52                </div>
53
54                <div wicket:id="resources" id="recordresources">[RESOURCES]</div>
55
56                <p id="recordcmditoggle" class="recordtogglelinks">
57                    <a href="#" id="showrecordcmdi" class="recordshowlink">Show all metadata fields</a>
58                    <a href="#" id="hiderecordcmdi" class="recordhidelink">Hide all metadata fields</a>
59                </p>
60                <div wicket:id="cmdi" id="recordcmdi">[CMDI metadata]</div>
61
62                <p id="recordtechnicaldetailstoggle" class="recordtogglelinks">
63                    <a href="#" id="showrecordtechnicaldetails" class="recordshowlink">Show technical details</a>
64                    <a href="#" id="hiderecordtechnicaldetails" class="recordhidelink">Hide technical details</a>
65                </p>
66                <div id="recordtechnicaldetails">
67                    <h2>Technical details</h2>
68
69                    <div id="recordtechnicalattributes">
70                        <wicket:container wicket:id="technicalProperties">[PROPERTIES TABLE]</wicket:container>
71                    </div>
72                </div> <!-- recordtechnicaldetails -->
73            </div>
74        </wicket:extend>
75    </body>
76</html>
Note: See TracBrowser for help on using the repository browser.