forked from plclub/plclub-web
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
executable file
·166 lines (151 loc) · 5.02 KB
/
index.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
<div class="row">
<div class="mt-2 col-lg-6">
<div class="row">
<div class="mt-5 col-lg">
The security and privacy lab at the University of Pennsylvania performs fundamental research
in the areas of cryptography, blockchain, anonymous communication, differential privacy,
and programming language security.
</div>
</div>
</div>
<div class="mt-2 col-lg-6">
<h4 class="mt-5">Courses</h4>
<ul>
<li>CIS 2330: <a href="#">Introduction to blockchain</a></li>
<li>CIS 4510: <a href="https://www.seas.upenn.edu/~cis5510/">Computer and network security</a></li>
<li>CIS 5560: <a href="https://pratyushmishra.com/classes/cis-5560-s24//">Cryptography</a></li>
<li>MCIT 5820: <a href="https://www.cis.upenn.edu/~fbrett/mcit582.html">Blockchains</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<h4 class="mt">Areas of interest</h4>
<ul>
<li>Anonymous communication</li>
<li>Blockchains</li>
<li>Differential privacy</li>
</ul>
</div>
<div class="mt-3 col-lg-4">
</br>
<ul>
<li>Multiparty computation</li>
<li>Private federated analytics</li>
<li>Private information retrieval</li>
</ul>
</div>
<div class="mt-3 col-lg-4">
</br>
<ul>
<li>Private online advertising</li>
<li>Zero-knowledge proofs</li>
</ul>
</div>
</div>
<hr>
<h3>People</h3>
<h4 class="mt-4">Core Faculty</h4>
$for(facultyGroup)$
<div class="mt-3 row">
$for(faculty)$
<div id="info-container" class="col-lg-2 col-md-12">
$if(headshot)$
<a href= "$website$"><img class="img-fluid rounded mb-4" src="/img/people/$headshot$" alt="$name$" width="200px" height="200px"/></a>
$else$
<img class="img-fluid rounded mb-4" src="/img/people/missing.jpg" alt="$name$" width="200px" height="200px"/>
$endif$
</div>
<div class="mt-3 col-lg-2 col-md-12">
<strong>$name$</strong>
<div class="mt-1" id="links">
[<a href="mailto:$email$">email</a>]<br>
[<a href="$website$">website</a>]
</div>
</div>
$endfor$
</div>
$endfor$
<h4 class="mt-4">Affiliated Faculty</h4>
$for(affiliatedGroup)$
<div id="info-container" class="mt-3 row">
$for(affiliated)$
<div class="col-lg-2 col-md-12">
$if(headshot)$
<a href= "$website$"><img class="img-fluid rounded mb-4" src="/img/people/$headshot$" alt="$name$" width="150px" height="150px"/></a>
$else$
<img class="img-fluid rounded mb-4" src="/img/people/missing.jpg" alt="$name$" width="150px" height="150px"/>
$endif$
</div>
<div class="mt-3 col-lg-2 col-md-12">
<strong>$name$</strong>
<div class="mt-1" id="links">
[<a href="mailto:$email$">email</a>]<br>
[<a href="$website$">website</a>]
</div>
</div>
$endfor$
</div>
$endfor$
<!--
<h4 class="mt-4">Postdocs</h4>
$for(postdocGroup)$
<div id="info-container" class="mt-3 row">
$for(postdoc)$
<div class="col-lg-2 col-md-12">
$if(headshot)$
<a href= "$website$"><img class="img-fluid rounded mb-4" src="/img/people/$headshot$" alt="$name$" width="150px" height="150px"/></a>
$else$
<img class="img-fluid rounded mb-4" src="/img/people/missing.jpg" alt="$name$" width="150px" height="150px"/>
$endif$
</div>
<div class="mt-3 col-lg-2 col-md-12">
<strong>$name$</strong>
<div class="mt-1" id="links">
[<a href="mailto:$email$">email</a>]<br>
[<a href="$website$">website</a>]
</div>
</div>
$endfor$
</div>
$endfor$
-->
<h4 class="mt-4">Students</h4>
$for(studentGroup)$
<div id="info-container" class="mt-3 row">
$for(student)$
<div class="col-lg-2 col-md-12">
$if(headshot)$
$if(website)$
<a href= "$website$"><img class="img-fluid rounded mb-4" src="/img/people/$headshot$" alt="$name$" width="150px" height="150px"/></a>
$else$
<img class="img-fluid rounded mb-4" src="/img/people/$headshot$" alt="$name$" width="150px" height="150px"/>
$endif$
$else$
<img class="img-fluid rounded mb-4" src="/img/people/missing.jpg" alt="$name$" width="150px" height="150px"/>
$endif$
</div>
<div class="mt-3 col-lg-2 col-md-12">
<strong>$name$</strong>
<div class="mt-1" id="links">
[<a href="mailto:$email$">email</a>]<br>
$if(website)$
[<a href="$website$">website</a>]<br>
$else$
$endif$
</div>
</div>
$endfor$
</div>
$endfor$
<h3 id="alum" class="mt-5">Alumni</h3>
<ul id="circle-list">
$for(alum)$
$if(website)$
<li><a href="$website$">$name$</a> - $degree$, $year$. <span class="year" style="color:gray">$where$</span></li>
$else$
<li>$name$ - $degree$, $year$. <span class="year" style="color:gray">$where$</span></li>
$endif$
$endfor$
</ul>
</div>