-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathworking_groups.html
75 lines (69 loc) · 2.37 KB
/
working_groups.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
<!--
Author: The JETSCAPE Collaboration
Date: 2023-04-02
This is the main page for the JETSCAPE working groups.
It lists the four working groups and links to their pages.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NV11FXRRQX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);} gtag('js', new Date());
gtag('config', 'G-NV11FXRRQX');
</script>
<title>Working Groups</title>
<meta charset="utf-8">
<meta name="description" content="JETSCAPE Working Groups">
<meta name="keywords" content="stat, physics, phys, comp, sims">
<meta name="author" content="The JETSCAPE Collaboration">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<div id="containerFlexible">
<!-- header -->
<div class="header">
<a href="index.html">
<img src="images/jetscape_home_logo.jpg" alt="JETSCAPE Logo" class="logo"
></a>
<h1>Working Groups</h1>
</div>
<!-- insert navigation bar -->
<script id="insert_menu" src="scripts/nav.js"></script>
<!-- main content -->
<!-- listing and linking to the four working groups -->
<div>
<p class="standardFont">
There are four major working groups within JETSCAPE.
</p>
<h2><a href="comp.html">COMP</a></h2>
<p class="standardFont">
The software development working group.<br>
Joern Putschke and Loren Schwiebert (Conveners)
</p>
<hr>
<h2><a href="phys.html">PHYS</a></h2>
<p class="standardFont">
The physics modeling working group.<br>
Chun Shen and Yasuki Tachibana (Conveners)
</p>
<hr>
<h2><a href="sims.html">SIMS</a></h2>
<p class="standardFont">
The simulations and distributed computing working group.<br>
Matthew Luzum and Jean-François Paquet (Conveners)
</p>
<hr>
<h2><a href="stat.html">STAT</a></h2>
<p class="standardFont">
The data and statistical analysis working group.<br>
Peter Jacobs and Raymond Ehlers (Conveners)
</p>
</div>
<!-- insert footer -->
<script id="insert_footer" src="scripts/foot.js"></script>
</div>
</body>