-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathMOTD.html
218 lines (158 loc) · 7.1 KB
/
MOTD.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<!DOCTYPE html>
<html>
<head>
<title>Flask Template Example</title>
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" media="screen">
<style type="text/css">
.container {
max-width: 500px;
padding-top: 100px;
}
h2 {color: red;}
</style>-->
<style type="text/css">
body {
background-color: #2B2B2B;
color: #A8B6C4;
}
</style>
</head>
<body>
<div align='center'>
<br />
<br />
<img src='xicam/gui/camera.jpg' width='200'/>
<h1 style='font-family:Zero Threes;'>
Welcome to Xi-cam
</h1>
<br />
Please cite Xi-cam in published work: <br />
Pandolfi, R., Kumar, D., Venkatakrishnan, S., Krishnan, H., Hexemer, A.
(under preparation)
</div>
<div class="attribution">
<h1 style="text-align:center">Xi-cam</h1>
<span class="container">
<div style="width:50%;float:left;">
<div class="section">Authors</div>
<ul>
<li>Ronald J Pandolfi</li>
<li>Dinesh Kumar</li>
<li>Singanallur Venkatakrishnan</li>
<li>Luis Barrosso-Luque</li>
<li>Austin Blair</li>
<li>Hari Krishnan</li>
<li>James A Sethian</li>
<li>Alexander Hexemer</li>
</ul>
</div>
<div style="margin-left:50%">
<div class="section">Organizations</div>
<ul>
<li>Advanced Light Source (ALS)</li>
<li>Center for Advanced Mathematics for Energy Research Applications (CAMERA)</li>
</ul>
</div>
<div style="clear:both;"></div>
<div style="position:relative;width:600px;display:block;margin:0 auto;">
<img class="slideXicam" src="xicam/gui/camera.jpg" style="height:150px;text-align:center;display:block;margin:0 auto;" />
<img class="slideXicam" src="xicam/gui/logos/Berkeley_Lab_Logo_Small.jpg" style="height:150px;text-align:center;display:block;margin:0 auto;" />
<img class="slideXicam" src="xicam/gui/logos/4206860375_5cb494745d_z.jpg" style="height:150px;text-align:center;display:block;margin:0 auto;" />
<a class="w3-btn-floating" onclick="plusDivsXicam(-1)" style="position:absolute;top:45%;left:0">❮</a>
<a class="w3-btn-floating" onclick="plusDivsXicam(+1)" style="position:absolute;top:45%;right:0">❯</a>
</div>
</span>
</div>
<script>
var slideIndexXicam = 1;
showDivsXicam(slideIndexXicam);
function plusDivsXicam(n) {
showDivsXicam(slideIndexXicam += n);
}
function showDivsXicam(n) {
var i;
var x = document.getElementsByClassName("slideXicam");
if (n > x.length) {slideIndexXicam = 1}
if (n < 1) {slideIndexXicam = x.length} ;
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
x[slideIndexXicam-1].style.display = "block";
}
</script>
<div class="attribution">
<h1 style="text-align:center">Tomopy</h1>
<span class="container">
<div style="width:50%;float:left;">
<div class="section">Authors</div>
<ul>
<li>Doga Gursoy</li>
<li>Francesco De Carlo</li>
<li>Xianghui Xiao</li>
<li>Chris Jacobsen</li>
</ul>
</div>
<div style="margin-left:50%">
<div class="section">Organizations</div>
<ul>
<li>Argonne National Lab</li>
<li>Advanced Photon Source</li>
</ul>
</div>
<div style="clear:both;"></div>
<div style="position:relative;width:600px;display:block;margin:0 auto;">
<img class="slideTomopy" src="xicam/gui/logos/Argonnelablogo.PNG" style="height:150px;text-align:center;display:block;margin:0 auto;" />
<img class="slideTomopy" src="xicam/gui/logos/Tomopy-logo-wiki.png" style="height:150px;text-align:center;display:block;margin:0 auto;" />
<a class="w3-btn-floating" onclick="plusDivsTomopy(-1)" style="position:absolute;top:45%;left:0">❮</a>
<a class="w3-btn-floating" onclick="plusDivsTomopy(+1)" style="position:absolute;top:45%;right:0">❯</a>
</div>
</span>
</div>
<script>
var slideIndexTomopy = 1;
showDivsTomopy(slideIndexTomopy);
function plusDivsTomopy(n) {
showDivsTomopy(slideIndexTomopy += n);
}
function showDivsTomopy(n) {
var i;
var x = document.getElementsByClassName("slideTomopy");
if (n > x.length) {slideIndexTomopy = 1}
if (n < 1) {slideIndexTomopy = x.length} ;
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
x[slideIndexTomopy-1].style.display = "block";
}
</script>
<div class="attribution">
<h1 style="text-align:center">Tomography Plugin</h1>
<span class="container">
<div style="width:50%;float:left;">
<div class="section">Authors</div>
<ul>
<li>Luis Barrosso-Luque</li>
<li>Ronald J Pandolfi</li>
<li>Holden Parks</li>
<li>Dilworth Parkinson</li>
</ul>
</div>
<div style="margin-left:50%">
<div class="section">Organizations</div>
<ul>
<li>Advanced Light Source (ALS)</li>
<li>Center for Advanced Mathematics for Energy Research Applications (CAMERA)</li>
</ul>
</div>
<div style="clear:both;"></div>
<div style="position:relative;width:600px;display:block;margin:0 auto;">
</div>
</span>
</div>
<!--
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
-->
</body>
</html>