generated from allen-cell-animated/github-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
83 lines (78 loc) · 3.38 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({ "gtm.start": new Date().getTime(), event: "gtm.js" });
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != "dataLayer" ? "&l=" + l : "";
j.async = true;
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, "script", "dataLayer", "GTM-KB579ZN7");
</script>
<style>
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap");
</style>
<title>Timelapse Feature Explorer</title>
<link rel="icon" type="image/svg+xml" href="/images/aics-logo.svg" />
<link rel="stylesheet" href="src/styles/cookie-banner.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="A web-based application for interactive visualization and analysis of segmented time-series microscopy data."
/>
<meta name="keywords" content="Microscopy, biology, imaging, data visualization" />
<meta name="author" content="Allen Institute for Cell Science" />
<!-- FB/Opengraph Meta Tags -->
<meta property="og:title" content="Timelapse Feature Explorer" />
<meta property="og:determiner" content="the" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Allen Institute for Cell Science" />
<meta property="og:url" content="https://timelapse.allencell.org/" />
<meta
property="og:description"
content="A web-based application for interactive visualization and analysis of segmented time-series microscopy data."
/>
<!-- TODO: Add image -->
<meta property="og:image" content="/images/meta-image.png" />
<meta property="og:image:width" content="1250" />
<meta property="og:image:height" content="800" />
<meta property="og:image:type" content="image/png" />
<meta property="og:locale" content="en_US" />
<meta
property="og:image:alt"
content="A view of the Timelapse Feature Explorer showing a colony of cells with nuclei colored by volume."
/>
<!-- Twitter meta tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@AllenInstitute" />
<meta property="twitter:domain" content="timelapse.allencell.org" />
<meta property="twitter:url" content="https://timelapse.allencell.org/" />
<meta name="twitter:title" content="Timelapse Feature Explorer" />
<meta
name="twitter:description"
content="A web-based application for interactive visualization and analysis of segmented time-series microscopy data."
/>
<meta name="twitter:image" content="/images/meta-image.png" />
<meta
name="twitter:image:alt"
content="A view of the Timelapse Feature Explorer showing a colony of cells with nuclei colored by volume."
/>
</head>
<body style="margin: 0">
<noscript
><iframe
src="https://www.googletagmanager.com/ns.html?id=GTM-KB579ZN7"
height="0"
width="0"
style="display: none; visibility: hidden"
></iframe
></noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>