-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 827 Bytes
/
index.html
File metadata and controls
28 lines (27 loc) · 827 Bytes
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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<link rel="stylesheet" href="core/foam.css" />
<link rel="stylesheet" href="fonts.css" />
<script>
(function() {
var flags = window.location.search.substring(1).split('&').find(function(p) {
return p.indexOf('flags_=') == 0;
});
if ( ! flags ) return;
flags = decodeURIComponent(flags.substring(7)).split(',');
window.FLAGS = {};
flags.forEach(function(f) {
window.FLAGS[f] = true;
});
})();
</script>
<script src="core/bootFOAM.js"></script>
<!-- TODO: remove demos when Preso2 runs without it. -->
<script src="demos/demos.js"></script>
</head>
<body>
<script src="index.js"></script>
</body>
</html>