-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (22 loc) · 808 Bytes
/
index.html
File metadata and controls
23 lines (22 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
<script src="dist/mithril.js"></script>
<script src="dist/stream.js"></script>
<script src="dist/fuse.min.js"></script>
<script src="dist/main.js"></script>
<link rel="stylesheet" href="src/css/main.css" />
</head>
<body>
</body>
<script>
m.route(document.body, '/cat', {
'/cat': ConferenceList,
'/cat/:conferenceAcronym/:eventGuid/:recordingId': Recording,
'/cat/:conferenceAcronym/:eventGuid': Event,
'/cat/:conferenceAcronym': Conference
})
</script>
</html>