-
Notifications
You must be signed in to change notification settings - Fork 0
/
publication.html
51 lines (40 loc) · 1.2 KB
/
publication.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
<!DOCTYPE html>
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset='utf-8'>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<title>Publication</title>
<script>
$.get("navigation.html", function(data){
$("#nav-placeholder").replaceWith(data);
});
$.get("list.html", function(data){
$("#list.row").append(data);
});
$.get("footer.html", function(data){
$("#footer-placeholder").replaceWith(data);
});
</script>
</head>
<body>
<div id="nav-placeholder"></div>
<div class="container">
<div class="row">
<h1><br></h1>
</div>
<div class="row" id="list">
<h2>
List of publications:
</h2>
</div>
</div>
<div id="footer-placeholder"></div>
</body>
</html>