-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
81 lines (70 loc) · 3.35 KB
/
team.html
File metadata and controls
81 lines (70 loc) · 3.35 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./css/mini-default.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8" />
<title>EMEWS: Extreme-scale Model Exploration with Swift</title>
<style>
.title {font-weight: bold;}
.source {font-style: italic;}
</style>
</head>
<body>
<!-- Oh, hello there! It seems like you are interested in the source code behind the sample project, right? -->
<!-- The header below is sticky, it has a hamburger menu that only appears on smaller screens and menus that -->
<!-- only appear on screens above 768px. That sounds pretty complicated, but it's not! -->
<header class="sticky row" style="height: 60px;">
<div style="margin-top: 6px;">
<label for="drawer-checkbox" class="button drawer-toggle"></label>
<a href="index.html" class="logo"><img src="./images/emu_emews_white_small_150dpi.png" height="50" width="93"/></a>
<span> </span>
<a href="resources.html" class="button hidden-sm" style="vertical-align: text-bottom;">Resources</a>
<a href="papers.html" class="button hidden-sm" style="vertical-align: text-bottom;">Papers</a>
<a href="support.html" class="button hidden-sm" style="vertical-align: text-bottom;">Support</a>
<a href="team.html" class="button hidden-sm" style="vertical-align: text-bottom;">Team</a>
</div>
</header>
<!-- This is the hamburger menu for mobile screens. Standard navigation, really! -->
<input type="checkbox" id="drawer-checkbox">
<nav class="drawer hidden-md hidden-lg">
<label for="drawer-checkbox" class="close"></label>
<h4><a href="resources.html">Resources</a></h4>
<h4><a href="papers.html">Papers</a></h4>
<h4><a href="support.html">Support</a></h4>
<h4><a href="team.html">Team</a></h4>
</nav>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-10 col-lg-offset-1">
<br/>
<h1>EMEWS Team</h1>
<ul style="margin-left:20px;">
<!-- <ul style="margin-top:20px;"> -->
<li>Jonathan Ozik (Argonne National Laboratory / University of Chicago)</li>
<li>Nicholson Collier (Argonne National Laboratory / University of Chicago)</li>
<li>Justin Wozniak (Argonne National Laboratory / University of Chicago)</li>
<li>Carmine Spagnuolo (Univeristà degli Studi di Salerno)</li>
<li>Gary An (University of Vermont)</li>
</ul>
<!-- <h2 class="sc">Introduction</h2> -->
</div>
</div>
</div>
<footer>
<div class="col-sm col-md-10 col-md-offset-1">
<div style="text-align:center;">
<p><a target="_blank" href="https://github.com/emews">EMEWS on github</a></p>
</div>
<p>The EMEWS project is supported by the National
Institute of General Medical Sciences (R01GM115839), National Institute
on Drug Abuse (R01DA039934), National Institute on Aging (R01AG047869) of the National
Institutes of Health, and the National Science Foundation under Grants
DEB1516428 and 2200234. The content is solely the responsibility of the authors
and does not necessarily represent the official views of the National
Institutes of Health or the National Science Foundation.
</p>
</div>
</footer>
</body>
</html>