-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (41 loc) · 1.65 KB
/
Copy pathindex.html
File metadata and controls
43 lines (41 loc) · 1.65 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
<!doctype html>
<html lang="en" data-theme="dark" data-accent="aqua" data-frame="art">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Tell search engines not to index while this is a draft site -->
<meta name="robots" content="noindex, nofollow" />
<title>OpenSeadragon — Deep zoom for the web</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Geist+Mono:wght@100..900&display=swap"
rel="stylesheet"
/>
<!-- anti-flash: apply saved theme before first paint -->
<script>
try {
var t = localStorage.getItem('osd-theme');
if (t) document.documentElement.setAttribute('data-theme', t);
} catch (e) {}
</script>
<!-- GitHub Pages SPA: restore path captured by 404.html -->
<script>
try {
var r = sessionStorage.getItem('osd_spa_redirect');
if (r) {
sessionStorage.removeItem('osd_spa_redirect');
history.replaceState(null, null, r);
}
} catch (e) {}
</script>
<!-- OpenSeadragon — loaded globally so composables can access window.OpenSeadragon -->
<script src="https://cdn.jsdelivr.net/npm/openseadragon/build/openseadragon/openseadragon.min.js"></script>
<!-- anime.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.2/anime.min.js"></script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>