-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpapers.html
44 lines (34 loc) · 1.61 KB
/
papers.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./style/output.css" rel="stylesheet">
<script src="scripts/generatePublications.js" type="text/javascript"></script>
<script src="scripts/d3.v7.min.js" type="text/javascript"></script>
</head>
<body>
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
<div class="relative flex items-end justify-between h-52">
<div class="flex-1 flex items-end justify-center sm:items-stretch sm:justify-start">
<div class="flex-shrink-0 flex items-end ">
<img class="block h-36 w-auto" src="img/logo.png" alt="Workflow">
</div>
<div class="flex items-end sm:block sm:ml-6 px-10">
<div class="flex h-36 space-x-4 items-end">
<a href="index.html" class="text-gray-900 hover:bg-gray-900 hover:text-amber-500 px-3 py-2 rounded-md text-lg font-medium no-underline" >Home</a>
<a href="team.html" class="text-gray-900 hover:bg-gray-900 hover:text-amber-500 px-3 py-2 rounded-md text-lg font-medium no-underline">Team</a>
<a href="#" class="bg-amber-500 px-3 py-2 rounded-md text-lg font-medium no-underline">Publications</a>
<a href="software.html" class="text-gray-900 hover:bg-gray-900 hover:text-amber-500 px-3 py-2 rounded-md text-lg font-medium no-underline">Software</a>
</div>
</div>
</div>
</div>
</div>
<div id="paper-content" class="max-w-7xl mx-auto p-10 sm:px-6 lg:px-8">
</div>
<script>
generatePublications()
</script>
</body>
</html>