-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (72 loc) · 2.44 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport"
content="user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, minimal-ui, width=device-width" />
<link rel="icon" href="favicon.png" type="image/png">
<title>Story Adventure Viewer</title>
<link href="bootstrap.min.css" rel="stylesheet" />
<script src="bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="bootstrap-icons-font/bootstrap-icons.min.css">
<link href="style.css" rel="stylesheet" />
</head>
<body>
<div class="modal fade modal-xl" id="help_modal" tabindex="-1" aria-labelledby="help_modal_label" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="help_modal_label">Help</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="col" id="explain_hotkeys">
</div>
</div>
</div>
</div>
</div>
<div id="background">
<img id="background_image" />
</div>
<div class="container" id="menu_container">
<div class="row">
<div class="col">
<h1>Story Adventure Viewer</h1>
<p>
This is the viewer of <a href="https://github.com/Echsecutor/story_adventure" target="_blank">the open source
story adventure tools</a>.
See there for copyright, license information and please <a
href="https://github.com/Echsecutor/story_adventure/issues" target="_blank">open issues</a>
to report bugs or request features.
</p>
</div>
</div>
<div class="row">
<div class="col">
<button type="button" id="load_button" class="btn btn-success">
Load a Story Adventure
</button>
</div>
</div>
<div class="row">
<div class="col">
Press "?" to display the viewer help.
</div>
</div>
</div>
<div class="text-center d-none" id="spinner">
<div class="spinner-border text-warning" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
<div class="container" id="story_container">
<div class="row" id="story">
<div class="col" id="story_text">Lorem Ipsum</div>
</div>
<div class="row" id="choices_row">
</div>
</div>
<script src="code.js" type="module"></script>
</body>
</html>