-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
88 lines (81 loc) · 2.65 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
84
85
86
87
88
<html lang="en">
<head>
<title>Pilot Previews Landing Pages</title>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./style.css"/>
<link rel="icon" type="image/png" href="./previews/img/favicon.png" />
<link rel="apple-touch-icon" href="./previews/img/apple-touch-icon.png" />
<link
rel="apple-touch-icon"
sizes="72x72"
href="./previews/img/apple-touch-icon-72x72.png"
/>
<link
rel="apple-touch-icon"
sizes="114x114"
href="./previews/img/apple-touch-icon-114x114.png"
/>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"> </script>
<script>
$(function() {
var people = [];
$.getJSON('./vitessce_configs/vitessce_configs.json', function(data) {
$.each(data.visualizations, function(i, f) {
var link = "<li>" + "<a href=" + f.config + " title=" + f.name + ">" + f.name + "</a>" + "</li>";
$(link).appendTo("#vitesscelist");
});
});
});
</script>
</head>
<body>
<header class="main-header">
<div class="main-logo">
<a
href="https://cns-iu.github.io/hra-vccf-cell-distance-visualizations/"
title="Link to VCCF Preview Homepage"
><img src="./previews/img/logo-hubmap.svg" alt="HuBMAP logo" class="logo"
/></a>
</div>
</header>
<div class="main">
<h1>VCCF Cell Distance Visualizations</h1>
<ul class="list-style-none">
<li>
<a href="https://hubmapconsortium.github.io/hra-previews/pilots/pilot2.html" title="Vasculature CCF Visualization for Skin"
>Vasculature CCF Visualization for Skin</a
>
</li>
<li>
<a href="./previews/pilots/pilot1.html" title="Vasculature CCF Visualization for Intestine"
>Vasculature CCF Visualization for Intestine</a
>
</li>
<li>
<a href="./previews/pilots/pilot2.html" title="Vasculature CCF Visualization for Maternal-Fetal Interface"
>Vasculature CCF Visualization for Maternal-Fetal Interface</a
>
</li>
</ul>
<br/>
<h1>VCCF Cell Distance Visualizations (Vitessce-based)</h1>
<ul class="list-style-none" id="vitesscelist">
</ul>
</div>
<footer class="main-footer">
<p>
<small
>©
<script>
new Date().getFullYear() > 2010 &&
document.write(new Date().getFullYear());
</script>
All Rights Reserved.</small
>
</p>
</footer>
</body>
</html>