-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (55 loc) · 2.74 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
<!DOCTYPE HTML>
<html>
<head>
<title>Andrea Tagliasacchi</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" media="screen" href="/style.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico" />
<!-- do not cache page -->
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<!-- locally stored libraries -->
<script type="text/javascript" src="/javascript/jquery.js"></script>
<script type="text/javascript" src="/javascript/commonmark.js"></script>
<!-- my javascript files -->
<script type="text/javascript" src="/build.js"></script>
<!-- executes javascript -->
<script type="text/javascript">
$(document).ready(() => { jQuery.get("/1_biography.md", (file) => { markdown2html(file, "biography") }); })
$(document).ready(() => { jQuery.get("/2_contacts.md", (file) => { markdown2html(file, "contacts") }); })
$(document).ready(() => { jQuery.get("/3_hiring.md", (file) => { markdown2html(file, "hiring") }); })
$(document).ready(() => { jQuery.get("/4_news.md", (file) => { markdown2html(file, "news") }); })
$(document).ready(() => { jQuery.get("/5_service.md", (file) => { markdown2html(file, "service") }); })
$(document).ready(make_students)
$(document).ready(make_alumni)
$(document).ready(make_publications)
$(document).ready(make_footer)
</script>
</head>
<body>
<div id="menu">
<menu_title>Andrea Tagliasacchi</menu_title>
<ol>
<li><a href="/index.html#team"> Team </a></li>
<li><a href="/index.html#pubs_list"> Publications </a></li>
<li><a href="/index.html#hiring"> Join Us! </a></li>
<li><a href="/calendar.html"> Calendar </a></li>
</ol>
</div>
<div id="container">
<!-- SPLIT 2/3 + 1/3-->
<div id="biography" class="two-third"></div>
<div class="one-third last"> <div class="image"><img src="images/andrea_mtdoug.jpeg" width=100% /></div> </div>
<div id="contacts" class="one"> </div>
<div id="hiring" class="one"> </div>
<!-- SPLIT 1/2 + 1/2-->
<div id="news" class="one-half"> </div>
<div id="service" class="one-half last"> </div>
<div id="team" class="one"> <h1> Team </h1> <ul class="list" id="students_list"> </ul> </div>
<div id="alumni" class="one"> <h1> Alumni </h1> <ul class="list" id="alumni_list"></ul> </div>
<div id="pubs_list" class="one"> <h1>Publications</h1> </div>
<div id="footer"> </div>
</div>
</body>
</html>