-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
34 lines (31 loc) · 1.22 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
<html>
<head>
<meta charset="utf-8">
<title>Conference Schedule</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="favicon.png" type="image/png">
<link rel="apple-touch-icon" href="apple-touch-icon.png" type="image/png">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<h1 id="headline"></h1>
<ul id="schedule-tabs"></ul>
<div id="schedule"></div>
<script src="js/libs/microevent.js"></script>
<script src="js/plugin_factory.js"></script>
<script src="js/eventemitter.js"></script>
<script src="js/view-helper.js"></script>
<script src="js/theme-loader.js"></script>
<script src="js/schedule-loader.js"></script>
<script src="js/spreadsheet-parser.js"></script>
<script src="js/request.js"></script>
<script src="js/page-builder.js"></script>
<script src="js/plugins/current-day.js"></script>
<script src="js/plugins/star.js"></script>
<script src="js/plugins/refresh.js"></script>
<script src="js/plugins/local-storage.js"></script>
<script src="js/main.js"></script>
</body>
</html>