forked from shvpnd/daikon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetails.html
43 lines (38 loc) · 1.43 KB
/
details.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daikon - Anime</title>
<link rel="icon" href="./assets/logo.png" type="image/png">
<link rel="stylesheet" href="./styles/styles.css">
<link rel="stylesheet" href="./styles/popup.css">
</head>
<body>
<div class="centered">
<table bgcolor="#FFFFFF" cellpadding="2" cellspacing="2" border="2">
<tbody>
<tr>
<td style="vertical-align: top;">
<div id="anime-details"></div>
</td>
</tr>
</tbody>
</table>
</div>
<div id="shortcutsPopup" class="shortcuts-popup">
<div class="shortcuts-content">
<p><strong>Keyboard Shortcuts</strong></p>
<ul>
<li><strong>s </strong>: open search</li>
<li><strong>← </strong>: play next ep</li>
<li><strong>→ </strong>: play prev ep</li>
<li><strong>w </strong>: watch now (on details page)</li>
<li><strong>d </strong>: go to daikon homepage</li>
</ul>
</div>
</div>
<script src="./script/details.js"></script>
<script src="./script/popup.js"></script>
</body>
</html>