forked from merewif/tales-of-strange-aeons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chapters.html
127 lines (111 loc) · 3.55 KB
/
chapters.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tales of Strange Aeons</title>
<link rel="stylesheet" href="style.css" />
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- jQuery UI -->
<link
rel="stylesheet"
href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<!-- Gumshoe -->
<script src="https://cdn.jsdelivr.net/gh/cferdinandi/gumshoe@4/dist/gumshoe.polyfills.min.js"></script>
<!-- Local JS -->
<script src="main.js"></script>
<script src="./assets/elements/xml2json.js"></script>
<!-- Fontawesome -->
<link
rel="stylesheet "
href="https://use.fontawesome.com/releases/v5.15.4/css/all.css "
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm "
crossorigin="anonymous "
/>
<!--GitHub page at https://merewif.github.io/tales-of-strange-aeons/index.html -->
<link
rel="shortcut icon"
href="/assets/images/cursor.png"
type="image/x-icon"
/>
</head>
<body id="chapter-page">
<div id="book-reader">
<div id="chapternav">
<div id="chapterlist">
<div class="chapter" id="chapter0">
<div class="chaptertext">
<h1>Prologue</h1>
<p>Death Returns</p>
</div>
</div>
<div class="chapter" id="chapter1">
<div class="chaptertext">
<h1>Chapter 1</h1>
<p>Quiet Awakening</p>
</div>
</div>
<div class="chapter" id="chapter2">
<div class="chaptertext">
<h1>Chapter 2</h1>
<p>Quiet Awakening</p>
</div>
</div>
<div class="chapter" id="chapter3">
<div class="chaptertext">
<h1>Chapter 3</h1>
<p>Quiet Awakening</p>
</div>
</div>
<div class="chapter" id="chapter4">
<div class="chaptertext">
<h1>Chapter 4</h1>
<p>Quiet Awakening</p>
</div>
</div>
<div class="chapter" id="chapter5">
<div class="chaptertext">
<h1>Chapter 5</h1>
<p>Quiet Awakening</p>
</div>
</div>
<div class="chapter" id="chapter6">
<div class="chaptertext">
<h1>Chapter 6</h1>
<p>Quiet Awakening</p>
</div>
</div>
<div class="chapter" id="chapter7">
<div class="chaptertext">
<h1>Chapter 7</h1>
<p>Quiet Awakening</p>
</div>
</div>
<div class="chapter" id="chapter8">
<div class="chaptertext">
<h1>Chapter 8</h1>
<p>Quiet Awakening</p>
</div>
</div>
<div class="chapter" id="chapter9">
<div class="chaptertext">
<h1>Chapter 9</h1>
<p>Quiet Awakening</p>
</div>
</div>
</div>
</div>
<div id="chapter-open" class="fullchapter">
<h1>Empty.</h1>
</div>
</div>
</body>
<script>
let spy = new Gumshoe("#sidemenu-ul a");
spy.detect();
</script>
</html>