-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathexample1.html
More file actions
80 lines (43 loc) · 2.42 KB
/
example1.html
File metadata and controls
80 lines (43 loc) · 2.42 KB
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
<!doctype html>
<html>
<head>
<!-- Meta data -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Stylesheets -->
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<link rel="stylesheet" type="text/css" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<link rel="stylesheet" type="text/css" href="https://unpkg.com/[email protected]/dist/leaflet.draw.css" />
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css">
<link rel="stylesheet" type="text/css" href="https://rawgit.com/BluePigeons/dragon_drop/master/dragondrop.css" />
<link rel="stylesheet" type="text/css" href="https://rawgit.com/BluePigeons/alltheunicode/master/alltheunicode.css" />
<link rel="stylesheet" type="text/css" href="polyanno.css" />
<!-- Javascript libraries -->
<!-- Maybe add something in to ensure these are updated as the IIIF may be updated more frequently than normal libraries? -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="https://rawgit.com/mejackreed/Leaflet-IIIF/master/leaflet-iiif.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.draw.js"></script>
</head>
<body>
<div data-role="main" class="ui-content">
<div id="main page" class="container polyanno-page-body">
<div class="row" id="polyanno-top-bar">
<!-- The minimising bar with keyboard buttons go here-->
</div>
<div class="row" id="polyanno-page-body">
<!-- Image Viewer Panel -->
<!-- Editor Boxes go here -->
</div>
</div>
</div>
<script src="https://hypothes.is/embed.js" async></script>
<script src="dragondrop.js"></script>
<script src="https://rawgit.com/BluePigeons/alltheunicode/master/alltheunicode.js"></script>
<script src="polyanno.js"></script>
<script src="example1.js"></script>
</body>
</html>