-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpeople.html
More file actions
88 lines (68 loc) · 2.21 KB
/
people.html
File metadata and controls
88 lines (68 loc) · 2.21 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
82
83
84
85
86
87
88
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Commit @ CSAIL — People</title>
<!-- Edit data/people.xml to add or update group members.
Each entry lists name, title, and optional URL. -->
<link rel="stylesheet" href="assets/css/style.css"/>
</head>
<body>
<div class="pagewidth">
<div class="outer">
<div class="main">
<!-- HEADER / NAV -->
<div class="menuitem nav">
<a class="menuitemlink" href="index.html">Home</a>
<a class="menuitemlink" href="projects.html">Projects</a>
<a class="menuitemlink" href="people.html">People</a>
<a class="menuitemlink" href="publications.html">Publications</a>
</div>
<div style="clear:both"></div>
</div>
<!-- PAGE CONTENT -->
<div class="secbody" id="people-secbody">
<!-- Optional rotating photos -->
<div id="image_window">
<img src="assets/img/commitlogo.png" alt="The COMMIT Group">
</div>
<!-- NEW: group header -->
<h2 class="grouphead">Current Members</h2>
<h2>Faculty</h2>
<ul id="faculty" class="person"></ul>
<h2>Researchers</h2>
<ul id="researchers" class="person"></ul>
<h2>Graduate Students</h2>
<ul id="grad" class="person"></ul>
<h2>MEng</h2>
<ul id="meng" class="person"></ul>
<h2>UROP</h2>
<ul id="urop" class="person"></ul>
<h2>Visiting Students</h2>
<ul id="visiting" class="person"></ul>
<!-- Rotating photos (right before Alumni) -->
<div
id="people-rotator"
class="photo-rotator"
data-interval="5500"
data-fade="1000"
data-images='["assets/img/commit_group-06-21.jpg","assets/img/commit_group-12-19.jpg"]'
aria-label="Group photos slideshow"
>
</div>
<h2 class="grouphead">Alumni</h2>
<div id="alumni"></div>
</div>
<!-- ...below unchanged... -->
<!-- FOOTER -->
<div class="credits">© Commit Group — Massachusetts Institute of Technology — CSAIL</div>
</div>
</div>
</div>
<!-- Scripts: common first, then people -->
<script src="assets/js/common.js"></script>
<script src="assets/js/rotator.js"></script>
<script src="assets/js/people.js"></script>
</body>
</html>