This repository has been archived by the owner on Jul 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 loc) · 1.54 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
<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.ico" type="image/png">
<link rel="apple-touch-icon" href="apple-touch-icon.png" type="image/png">
<link rel="apple-touch-icon" sizes="57x57" href="apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="72x72" href="apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="144x144" href="apple-touch-icon-144x144.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>