forked from PlytonRexus/if-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (35 loc) · 1.3 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
39
40
<!DOCTYPE html>
<html>
<head>
<title>IF</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="assets/images/if-logo.png" type="image/x-icon">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="downloadable/if_r.css">
</head>
<body class="parallax">
<noscript>
<em class="plain-text" style="margin: auto;">
Looks like you have JavaScript disabled or unavailable in this browser.
You should enable it to run this app.
</em>
</noscript>
<div id="root"></div>
<script src="js/globals.js"></script>
<script src="js/if_r-terp.js"></script>
<script type="text/javascript" src="js/lib/w3-highlighter.js"></script>
<script type="module" src="js/display.js"></script>
<script src="js/lib/nearley.js"></script>
<script src="js/parser/section.grammar.js"></script>
<script src="js/parser/scene.grammar.js"></script>
<script src="js/lib/showdown.min.js"></script>
<script>
;(function () {
var src = '//cdn.jsdelivr.net/npm/eruda';
if (!/eruda=true/.test(window.location) && localStorage.getItem('active-eruda') != 'true') return;
document.write('<scr' + 'ipt src="' + src + '"></scr' + 'ipt>');
document.write('<scr' + 'ipt>eruda.init();</scr' + 'ipt>');
})();
</script>
</body>
</html>