forked from futurepress/epub.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·74 lines (62 loc) · 2.38 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
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<script src="dist/libs/jquery-1.9.0.min.js"></script>
<script src="dist/libs/modernizr-2.6.2.min.js"></script>
<script>
"use strict";
document.onreadystatechange = function () {
if (document.readyState == "complete") {
FP.filePath = "/dist/";
fileStorage.filePath = FP.filePath + "libs/";
FPR.app.init();
}
};
</script>
<!-- Render -->
<script src="dist/render.min.js"></script>
<!-- Hooks -->
<script async src="dist/hooks/hooks.min.js"></script>
<!-- Reader -->
<script src="dist/reader.min.js"></script>
<!-- fileStorage -->
<script src="dist/libs/fileStorage.min.js"></script>
</head>
<body>
<div id="sidebar">
<div id="controls">
<!-- <input id="search" placeholder="search"> -->
<a id="network"><img id="store" src="img/save.png"></a>
<a id="setting"><img id="settings" src="img/settings.png"></a>
<a id="bookmark"><img id="bookmarks" src="img/star.png"></a>
</div>
<div id="toc">
</div>
<div id="settingsPanel">
</div>
</div>
<div id="main">
<div id="opener">
<a id="open"><img src="img/menu-icon.png"></a>
</div>
<div id="titlebar">
<span id="book-title"></span>
<span id="title-seperator"> – </span>
<span id="chapter-title"> </span>
</div>
<div id="prev" class="arrow">‹</div>
<div id="area"></div>
<div id="next" class="arrow">›</div>
<div id="divider"></div>
<div id="loader"><img src="img/loader.gif"></div>
</div>
</body>
</html>