-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (68 loc) · 1.56 KB
/
index.html
File metadata and controls
72 lines (68 loc) · 1.56 KB
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
<html>
<head>
<title>IP-Reader</title>
<!-- Load IPFS. -->
<script src="https://unpkg.com/ipfs/dist/index.min.js"></script>
<script src="reader.js"></script>
<style>
body.index #status, body.index #reader,
body.loading #index, body.loading #reader,
body.reader #status, body.reader #index { display: none; }
#reader .metadata .sect { font-weight: bold; }
.metadata #coverimg img {
max-height: 500px;
}
.genres ul {
padding: 0;
}
.genres li {
display: inline-block;
}
.genres li:before {
content: "\2022";
padding: 0 0.5em;
}
</style>
</head>
<body class="loading">
<h1 id="status">Loading…</h1>
<div id="index">
<h2 id="title"></h2>
<table class="metadata">
<tr>
<td class="sect">Alt Names</td>
<td id="altnames"> </td>
<td id="coverimg" rowspan="7"></td>
</tr>
<tr>
<td class="sect">Author</td>
<td id="author"> </td>
</tr>
<tr>
<td class="sect">Artist</td>
<td id="artist"> </td>
</tr>
<tr>
<td class="sect">Genres</td>
<td id="genres"> </td>
</tr>
<tr>
<td class="sect">Type</td>
<td id="type"> </td>
</tr>
<tr>
<td class="sect">Status</td>
<td id="status"> </td>
</tr>
<tr>
<td class="sect">Description</td>
<td id="description"> </td>
</tr>
</table>
<ul id="chapters">
</ul>
</div>
<div id="reader">
</div>
</body>
</html>