-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdemo_gallery.template.html
115 lines (107 loc) · 3.5 KB
/
demo_gallery.template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>${COLLECTION}</title>
<link rel="stylesheet" type="text/css" href="${DATA_ROOT}/resources/juxta.css" />
<script src="${DATA_ROOT}/resources/openseadragon.min.js"></script>
<script type="text/javascript" src="${DATA_ROOT}/resources/overlays_preload.js"></script>
<script type="text/javascript" src="${DATA_ROOT}/resources/overlays.js"></script>
<!-- Contact person: [email protected] -->
<style>
html, body, .page {
height: 100%; /* needed for proper layout */
}
body {
background: #000000;
color: #ffffff;
overflow: hidden;
padding: 0;
margin: 0;
}
p {
margin-bottom: 1em;
}
.page {
display: flex;
flex-direction: column;
}
.page-header {
flex: 0 0 auto;
background-color: #cccccc;
color: #000000;
padding: 0.5em 1em 0.5em 1em;
}
.page-content {
flex: 1 1 auto;
position: relative;/* need this to position inner content */
overflow-y: auto;
}
.page-footer {
flex: 0 0 auto;
background-color: #dcdcdc;
color: #000000;
}
#pageinfo {
position: absolute;
top: 5%;
left: 5%;
width: 90%;
height: 10%;
}
.page-header ul {
padding: 0;
margin: 0;
}
.page-header li {
display: inline;
list-style-type: none;
padding-right: 20px;
}
.page-header h1 {
margin-top: 0;
font-size: 1em;
}
</style>
</head>
<body>
<div class="page">
<!--<div id="pageinfo">
<h1>${DESIGNATION}: ${TOTAL_IMAGES} images (${MEGAPIXELS} MPixels)</h1>
</div>-->
<div class="page-header">
<h1>${DESIGNATION}: ${TOTAL_IMAGES} images (${MEGAPIXELS} MPixels$(if [ "." != ".$ZIPNAME" ]; then echo ", all images: <a href="$ZIPNAME">$ZIPNAME</a> - $(du -h "$ZIPNAME" | cut -d$'\t' -f1)B" ; fi))</h1>
<!--Parent: ${PARENT}<br/>-->
<ul> $(echo "$SUBS" | tr '\n' '\0' | xargs -0 -n 1 -I {} echo "<li><a href="{}index.html">{}</a></li>") </ul>
</div>
<div id="zoom-display" class="page-content openseadragon"><div id="header"></div><div id="infobox"></div><div id="footer"></div></div>
<script type="text/javascript">
var myDragon = OpenSeadragon({
id: "zoom-display",
maxZoomPixelRatio: ${MAX_ZOOM_PIXEL_RATIO},
zoomPerScroll: 2.0,
showNavigator: false,
wrapHorizontal: false,
prefixUrl: "${DATA_ROOT}/resources/images/",
${TILE_SOURCES}
});
${SETUP_OVERLAY}
</script>
<script type="text/javascript">
overlays.createHeader = function(x, y, image, meta) {
imageId = image.substring(image.lastIndexOf('/')+1).replace(/\.[^/.]+$/, "");
return '<a href="' + image + '">' + imageId + '</a>';
}
overlays.showFooter = function(x, y, image, meta) {
return false;
}
</script>
<!-- Must be below the creation of myDragon -->
<script type="text/javascript" src="${DATA_ROOT}/resources/overlays.js"></script>
<script type="text/javascript">
</script>
</div><!-- page -->
</body>
</html>