-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·37 lines (37 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Parchment</title>
<meta name="viewport" content="width=device-width,user-scalable=no" />
<script src="/web/jquery.min.js"></script>
<script src="/web/ie.js" nomodule></script>
<script src="/web/main.js" type="module"></script>
<link rel="stylesheet" href="/web/web.css" />
<script>
parchment_options = {
default_story: ["/haunted.z5"],
lib_path: "./web/",
};
</script>
</head>
<body>
<div id="gameport">
<div id="windowport">
<noscript>
<p>
You'll need to turn on Javascript in your web browser to play this
game.
</p>
</noscript>
</div>
<div id="loadingpane">
<img src="/web/waiting.gif" alt="LOADING" /><br />
<em> Loading...</em>
</div>
<div id="errorpane" style="display: none">
<div id="errorcontent">...</div>
</div>
</div>
</body>
</html>