-
Notifications
You must be signed in to change notification settings - Fork 0
/
people_alumni.html
109 lines (87 loc) · 3.11 KB
/
people_alumni.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/lab.css">
<link rel="stylesheet" href="./css/markdown.css">
<link rel="icon" href="favicon.png" sizes="16x16">
<title>Lundberg Lab</title>
<script src="./js/jquery-3.3.1.min.js"></script>
<script src="./js/bootstrap.bundle.min.js"></script>
<script src="./js/showdown.min.js"></script>
<script src="./js/lab.js"></script>
<script>
$( document ).ready(function() {
convertContent();
$.get("menu.html", function(response) {
$("#menu").html(response);
$("#People").addClass( "active" );
});
$("#footer").load("footer.html");
});
</script>
</head>
<body>
<div id="menu"></div>
<header>
<div class="adapt-fixed-top">
<img class="middle-image" src="./images/people.jpg">
</div>
</header>
<div class="container">
<h1 class="title">Alumni</h1>
</div>
<!-- beginning of the content of this page -->
<div class="container">
<!-- base person info -->
<div class="row">
<div class="col-md-3">
<img class="img-fluid rounded mb-3 mb-md-0" src="./images/people_mahj.png" alt="">
</div>
<div class="col-md-9 mdcontent people_mahj"></div>
</div>
<hr>
<!-- end base person info -->
<!-- base person info -->
<div class="row">
<div class="col-md-3">
<img class="img-fluid rounded mb-3 mb-md-0" src="./images/people_rusc.png" alt="">
</div>
<div class="col-md-9 mdcontent people_rusc"></div>
</div>
<hr>
<!-- end base person info -->
<!-- base person info -->
<div class="row">
<div class="col-md-3">
<img class="img-fluid rounded mb-3 mb-md-0" src="./images/people_desu.png" alt="">
</div>
<div class="col-md-9 mdcontent people_desu"></div>
</div>
<hr>
<!-- end base person info -->
<!-- base person info -->
<div class="row">
<div class="col-md-3">
<img class="img-fluid rounded mb-3 mb-md-0" src="./images/people_peth.png" alt="">
</div>
<div class="col-md-9 mdcontent people_peth"></div>
</div>
<hr>
<!-- end base person info -->
<!-- base person info -->
<div class="row">
<div class="col-md-3">
<img class="img-fluid rounded mb-3 mb-md-0" src="./images/people_haxu.png" alt="">
</div>
<div class="col-md-9 mdcontent people_haxu"></div>
</div>
<hr>
<!-- end base person info -->
</div>
<!-- end of the content of this page -->
<div id="footer"></div>
</body>
</html>