-
Notifications
You must be signed in to change notification settings - Fork 61
/
index.html
37 lines (37 loc) · 1.64 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,initial-scale=1.0,minimum-scale=1.0">
<script src="dist/web/jquery.min.js"></script>
<script src="dist/web/ie.js" nomodule></script>
<script src="dist/web/main.js" type="module"></script>
<link rel="stylesheet" href="dist/web/web.css">
</head>
<body>
<div id="gameport">
<div id="about">
<h1>Parchment</h1>
<p>is an interpreter for Interactive Fiction. <a href="https://github.com/curiousdannii/parchment">Find out more.</a></p>
<p>Find stories to play at the <a href="https://ifdb.org/">Interactive Fiction Database</a>.</p>
<p id="play-url">
<input id="play-url-input" placeholder="Enter a URL of a story file" type="url">
<button id="play-url-button">Go</button>
</p>
<p id="play-url-error"></p>
<label id="custom-file-upload" for="file-upload" tabindex="0" role="button">
<p>Or, click here to play a story file on your device</p>
</label>
<input id="file-upload" type="file" style="display: none"/>
<noscript><p>Parchment requires Javascript. Please enable it in your browser.</p></noscript>
</div>
<div id="windowport"></div>
<div id="loadingpane" style="display:none;">
<img src="dist/web/waiting.gif" alt="LOADING"><br>
<em> Loading...</em>
</div>
<div id="errorpane" style="display:none;"><div id="errorcontent">...</div></div>
</div>
</body>
</html>