-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (26 loc) · 866 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="logo.svg">
<link rel="stylesheet" href="main.css" />
<link href="jqueryui/jquery-ui.css" rel="stylesheet">
<script src="jqueryui/external/jquery/jquery.js"></script>
<script src="jqueryui/jquery-ui.js"></script>
<title>ProfGramme</title>
<link rel="manifest" href="manifest.webmanifest" />
</head>
<body>
<div id="timeline"></div>
<div id="programme"></div>
<script src="example.js"></script> <!-- Contiens les modèles -->
<script src="source.js"></script> <!-- Gère l'analyse et la gestion de la source -->
<script src="ui.js"></script> <!-- Gère l'interface -->
<script src="main.js"></script> <!-- Fichier principal -->
<script>
if(location.protocol !== 'file:') {
navigator.serviceWorker.register('sw.js');
}
</script>
</body>
</html>