forked from tchajed/personal-website-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.njk
40 lines (40 loc) · 1.16 KB
/
index.njk
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tej Chajed (demo)</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Tej Chajed is a PhD student at MIT">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<table>
<tbody>
<tr>
<td class="bio">
<h1 class="name center">Tej Chajed</h1>
<div class="email center">[email protected]</div>
<p>Hello! My name is Tej and I'm a final-year PhD student at MIT
working on formal verification.</p>
</td>
<td class="photo">
<img src="assets/photo.png" width="100%" height="100%">
</td>
</tr>
</tbody>
</table>
<h2>Research</h2>
I make correct systems software.
<h2>Publications</h2>
<ul class="publications">
{% for pub in publications %}
<li class="pub">
<p>
<span class="pub-title">{{ pub.title }}</span></p>
<p>{{ pub.authors | safe }}</p>
<p>{{ pub.conference }}</p>
</li>
{% endfor %}
</ul>
</body>
</html>