-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
109 lines (89 loc) · 6.08 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<html>
<head>
<title>GRIFFIN Collaboration</title>
<script src="scripts/jquery1-11-3.min.js" type="text/javascript"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="scripts/bootstrap3-3-5.min.js" type="text/javascript"></script>
<script src="scripts/mustache.js" type="text/javascript"></script>
<script src="scripts/smooth-scroll.js"></script>
<script src='scripts/griffin.js' type="text/javascript"></script>
<link rel="stylesheet" href="css/general.css"></link>
<link rel="stylesheet" href="css/landing.css"></link>
</head>
<body>
<div id='wrap' class='wrap'>
<div id='heroHeader' class='heroHeader'>
<!--navigation - poulate with nav.mustache-->
<nav id='navigation' class="navbar navbar-default navbar-custom"></nav>
<!--splash-->
<div class="jumbotron jumbotron-custom">
<h1>
<img class='logo' alt="GRIFFIN Collaboration" src="img/branding/GRIFFIN_Logo_White.png">
GRIFFIN Collaboration
</h1>
<p>
GRIFFIN - Gamma-Ray Infrastructure For Fundamental Investigations of Nuclei - is a state-of-the-art facility for decay spectroscopy with rare-isotope beams located at the TRIUMF-ISAC-I facility, Vancouver, Canada. An array of 16 high-purity germanium clover detectors coupled to a fully digital data acquisition system dramatically increases gamma-ray detection efficiency and data aquisition throughput over past experiments, while leveraging a powerful suite of ancillary detectors developed for its predecessor, the 8pi spectrometer.
<br>
<br>
The GRIFFIN infrastructure has been funded jointly by the Canada Foundation for Innovation, the British Columbia Knowledge Development Fund (BCKDF), the Ontario Ministry of Research and Innovation (ON-MRI), TRIUMF and the University of Guelph. TRIUMF receives federal funding via a contribution agreement through the National Research Council Canada (NRC). The ongoing maintenance and operation of the GRIFFIN facility is funded through a Natural Sciences and Engineering Research Council of Canada (NSERC) subatomic physics project grant.
<div class='center'>
<a data-scroll class='btn btn-info btn-lg' id='moreInfo' href='#detail'>Learn More</a>
</div>
</p>
<h3>Land Acknowledgement</h3>
<p>
The Gamma Ray Spectroscopy at ISAC team acknowledges that our work spans many Territories and Treaty areas and we are grateful for the traditional Knowledge Keepers and Elders who are with us today, those who have gone before us and the youth that inspire us. As an act of Reconciliation and gratitude to those whose territory we visit, reside and work on, and as recommended by the Truth and Reconciliation Commission’s (TRC) 94 Calls to Action, we recognize the land and the benefits it provides all of us.
</p>
<div class='center'>
<a class='btn btn-info btn-lg' id='moreInfo' href='https://griffin.triumf.ca/land.html'>Learn More</a>
</div>
</div>
</div>
<div id='detail' class='detail'>
<div class='col-md-4'>
<div class='center'>
<h1>17x efficiency</h1>
<a href='img/GRIFFIN_Eff.png'><img class='inline' src='img/GRIFFIN_Eff.png'></img></a>
</div>
<p class='splashText'>GRIFFIN is 17 times more efficient in gamma-ray singles (almost 300 times more efficiency for gamma-gamma coincidences) at 1 MeV, and around 40 times more efficient at 10 MeV, than its predacesor.</p>
</div>
<div class='col-md-4'>
<div class='center'>
<h1>Massive Data</h1>
<img src='img/daq.png'></img>
</div>
<p class='splashText'>The <a href='daq.html'>GRIFFIN DAQ</a> is capable of writing up to 200 TB of data to disk every week - allowing the exploration of rarer processes than ever before.</p>
</div>
<div class='col-md-4'>
<div class='center'>
<h1>Physics on the Web</h1>
<img src='img/loveTheWeb.png'></img>
</div>
<p class='splashText'>The <a href='toolkit.html'>GRIFFIN Toolkit</a> is a suite of web apps built for designing, understanding and running experiments at GRIFFIN, all on the web. <a href='toolkit.html'>Check out our tools</a>, or <a href='https://github.com/GRIFFINCollaboration'>look under the hood</a> - all GRIFFIN web projects are open source on GitHub.</p>
</div>
<div id='footer'></div>
</div>
</div>
<script>
//inject navigation bar
promisePartial('nav').then(function(template){
document.getElementById('navigation').innerHTML = Mustache.to_html(template, {"whiteLogo": true});
document.getElementById('linkOverview').classList.add('active');
document.getElementById('linkOverview').classList.add('active-custom');
})
//inject footer
promisePartial('footer').then(function(template){
document.getElementById('footer').innerHTML = Mustache.to_html(template, {});
})
//mange the scroll link
smoothScroll.init();
manageScrollPosition();
window.onresize = manageScrollPosition;
function manageScrollPosition(){
var heroHeight = document.getElementById('heroHeader').offsetHeight,
scroll = document.getElementById('moreInfo');
scroll.setAttribute('style', 'top: calc(' + heroHeight + 'px - 5em)')
}
</script>
</body>
</html>