forked from brain-image-library/bil_info_site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
access.html
58 lines (50 loc) · 2.38 KB
/
access.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
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<title>Bootstrap 4 Layout</title>
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-R1YK9CG4GL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-R1YK9CG4GL');
</script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway:400,800">
<link rel='stylesheet' href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/css/bootstrap.css">
<link rel="stylesheet" href="/css/styles.css">
<script src="/js/jquery.min.js"></script>
</head>
<body>
<div class="container">
<!--Navigation bar-->
<div id="topmenu">
</div>
<script>
$(function(){
$("#topmenu").load("menu.html");
});
</script>
<!--end of Navigation bar-->
<div class="jumbotron">
<h1>What is the Brain Image Library?</h1>
The Brain Image Library is a national public resource enabling researchers to deposit, analyze, mine, share and interact with large brain image datasets. The Brain Image Library (BIL) encompasses the deposition of datasets, the integration of datasets into a searchable web-accessible system, the redistribution of datasets, and a computational enclave to allow researchers to process datasets in-place and share restricted and pre-release datasets.
BIL serves a geographically distributed customer base including large confocal imaging centers that are generating petabytes of confocal imaging datasets per year. For these customers, the library serves as an archive facility for whole brain volumetric datasets from mammals. BIL also serves geographically distributed researchers who want to interact with and download library datasets.
</div>
<!--Bottom Footer -->
<div id="bottomfooter">
</div>
<script>
$(function(){
$("#bottomfooter").load("footer.html");
});
</script>
<!--end of bottomfooter-->
<script src="/js/jquery.min.js"></script>
<script src="/js/popper.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
</body>
</html>