-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (48 loc) · 1.87 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
<!DOCTYPE html>
<html>
<head>
<title>
Thomas Renne CV
</title>
<link rel="icon" type="image/svg+xml" href="./data/images/logo_renne.svg">
<link rel="stylesheet" href="styles/desktop_styles/body_style.css">
<link rel="stylesheet" href="styles/desktop_styles/publi_style.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://code.iconify.design/iconify-icon/1.0.0-beta.3/iconify-icon.min.js"></script>
<script src="scripts/publi_json_to_html.js" type="text/javascript"></script>
<script src="scripts/comm_json_to_html.js" type="text/javascript"></script>
<script src="scripts/back_to_top.js", type="text/javascript"></script>
<script src="scripts/language.js" type="text/javascript"></script>
<script src="https://code.iconify.design/1/1.0.7/iconify.min.js"></script>
<script>
jQuery(document).ready(function($) {
$('#header').load('./header.html')
$('#footer').load('./footer.html')
$('#div-front').load('./resume.html');
})
</script>
</head>
<body>
<div id="header"></div>
<div id="div-body">
<div id="div-front"></div>
<div id="publication-div">
<h2 id="publication-title">
<span lang="en">Scientific publications</span>
<span lang="fr">Publications scientifiques</span>
</h2>
<div id="publication-entries">
</div>
</div>
<div id="communication-div">
<h2 id="communication-title">
<span lang="en">Scientific communications</span>
<span lang="fr">Communication scientifique</span>
</h2>
<div id="communication-entries">
</div>
</div>
</div>
<div id="footer"></div>
</body>
</html>