-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
83 lines (77 loc) · 2.94 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
81
82
83
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Comic Reader</title>
<!-- Building Blocks -->
<link rel="stylesheet" type="text/css" href="building-blocks/buttons.css" />
<link rel="stylesheet" type="text/css" href="building-blocks/headers.css" />
<link rel="stylesheet" type="text/css" href="building-blocks/icons/action_icons.css" />
<link rel="stylesheet" type="text/css" href="building-blocks/icons/settings_icons.css" />
<link rel="stylesheet" type="text/css" href="building-blocks/lists.css" />
<link rel="stylesheet" type="text/css" href="building-blocks/toolbars.css" />
<link rel="stylesheet" type="text/css" href="building-blocks/util.css" />
<!-- App Style -->
<link rel="stylesheet" type="text/css" href="css/app.css" />
<!-- Zip Javascript Library -->
<script src="zip.js/zip.js"></script>
<!-- App Javascript Library -->
<script src="js/app.js"></script>
</head>
<body role="application" id="list-view">
<section role="region" id="main">
<header class="fixed">
<a id="btn-help"><span class="icon settings-icon help">help</span></a>
<h1 style='float:left;'>Comic Reader</h1>
<menu type="toolbar">
<a id="btn-file-browser-open">Open</a>
</menu>
</header>
<article class="scrollable header toolbar">
<div id='loader'>
<p>Loading</p>
</div>
<div id='comic'>
<div id='comic-pages'>
</div>
</div>
</article>
<div role="toolbar">
<ul>
<li><button class="action-icon back">Back</button></li>
</ul>
<ul>
<li><button class="action-icon forward">Forward</button></li>
</ul>
</div>
</section>
<section role="region" id="help">
<header class="fixed">
<button id='btn-help-close'><span class="icon icon-close">close</span>
</button>
<h1 style='float:left;'>Help</h1>
</header>
<article class="scrollable header">
<p>Comic Reader is a <a href="https://github.com/r-gaia-cs/ComicReader">free/open</a> web app for Firefox OS.</p>
<p>Comic Reader use the follow third party library:
<ul>
<li><a href="http://gildas-lormeau.github.io/zip.js/index.html">zip.js</a>
</li>
</ul>
</p>
</article>
</section>
<section data-type="list" role="region" id="file-browser">
<header class="fixed">
<button id='btn-file-browser-close'><span class="icon icon-close">close</span>
</button>
<h1 style='float:left;'>Open File</h1>
</header>
<article class="scrollable header">
<div id='file-browser-div'>
</div>
</article>
</section>
<script src="js/setup.js"></script>
</body>
</html>