-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
133 lines (122 loc) · 4.71 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Miricle</title>
<link rel="stylesheet" href="styles/reset.css" type="text/css" media="screen" />
<link rel="stylesheet" href="styles/style.css" type="text/css" media="screen" />
<link rel="stylesheet" href="lightbox/css/lightbox.css" />
<link href='https://fonts.googleapis.com/css?family=Open+Sans|Baumans' rel='stylesheet' type='text/css'>
<script src="js/modernizr.js"></script>
<script src="js/respond.min.js"></script>
<!-- include extern jQuery file but fall back to local file if extern one fails to load !-->
<script src="https://code.jquery.com/jquery-1.7.2.min.js"></script>
<script type="text/javascript">window.jQuery || document.write('<script type="text/javascript" src="js\/1.7.2.jquery.min"><\/script>')</script>
<script src="lightbox/js/lightbox.js"></script>
<script src="js/prefixfree.min.js"></script>
<script src="js/jquery.slides.min.js"></script>
<script>
$(function() {
$('#slides').slidesjs({
width: 800,
height: 235,
navigation: false,
pagination: false,
effect: {
fade: {
speed: 400
}
},
callback: {
start: function(number)
{
$("#slider_content1,#slider_content2").fadeOut(500);
},
complete: function(number)
{
$("#slider_content" + number).delay(500).fadeIn(1000);
}
},
play: {
active: false,
auto: true,
interval: 10000,
pauseOnHover: false
}
});
});
</script>
</head>
<body>
<header>
<h1>Miricle</h1>
<p>MIRI Data Analysis</p>
<select id="alternative_menu" size="1">
<option value="http://miri.ster.kuleuven.be/bin/view/Public/MIRISim_Public">Mirisim Install</a></option>
<option value="http://miri.ster.kuleuven.be/bin/view/Internal/MiricleInstallation">MIRICLE Install</a></option>
<option value="https://jenkins.miricle.org/">Builds</a></option>
<option value="https://ukatcfaultlog.atlassian.net/">Bugs</option>
<option value="http://www.miricle.org/CDP/">CDP browser</option>
</select>
<script>
$("#alternative_menu").change(function () {
var selctedValue = "";
$("select option:selected").each(function () {
selctedValue += $(this).val();
window.location.href = selctedValue;
});
});
</script>
<nav>
<h2 class="hidden">Navigation</h2>
<ul>
<li><a href="http://miri.ster.kuleuven.be/bin/view/Public/MIRISim_Public">Mirisim Install</a></li>
<li><a href="http://miri.ster.kuleuven.be/bin/view/Internal/MiricleInstallation">MIRICLE Install</a></li>
<li><a href="https://jenkins.miricle.org/">Builds</a></li>
<li><a href="https://ukatcfaultlog.atlassian.net/">Bugs</a></li>
<li><a href="http://www.miricle.org/CDP/">CDP browser</option>
</ul>
</nav>
</header>
<section class="container">
<h2 class="hidden">Links to pages</h2>
<article id="slider_content1">
<h3>MIRICLE</h3>
<p>MIRICLE is software for the MIRI test team. The aim of MIRICLE is to provide an easy to install and easy to use python environment with everything needed to investigate the test results of MIRI.</p>
<a class="button" href="http://miri.ster.kuleuven.be/bin/view/Internal/MiricleSoftwareSystem">Read more</a>
</article>
<article id="slider_content2">
<h3>MIRI</h3>
<p>The Mid-Infrared Instrument (MIRI) on JWST will provide direct imaging and medium resolution spectroscopy (R~3000) over the wavelength range 5 - 28.3 micron, coronagraphic imaging at 10.65, 11.4, 15.5 and 23 micron, and low resolution spectroscopy (R~100) over the wavelength range 5 - 10 micron.</p>
<a class="button" href="http://www.stsci.edu/jwst/instruments/miri">Read more</a>
</article>
<div id="slides">
<img src="img/miricle.jpg" alt="MIRICLE">
<img src="img/jwst.jpg" alt="JWST telescope">
</div>
</section>
<section id="boxcontent">
<h2 class="hidden">Adipiscing</h2>
<article>
<h3>Version 1.0 of Mirisim available</h3>
<p>
The first public version of the simulators for Miri is available.
</p>
</article>
<article>
<h3>Version 6.00 of MIRICLE</h3>
<p>
Version 6.00 makes sure that the dependencies also have the correct version number.
</p>
</article>
<article>
<h3>Version 5.10 of MIRICLE</h3>
<p>
Version 5.10 installs the mirisim version of MIRICLE automatically. To install the latest miri packages, use the <strong>--devel</strong> parameter during installation.
</p>
</article>
<br class="clear"/>
</section>
</body>
</html>