-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (47 loc) · 1.79 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
<html>
<head>
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<script type="text/javascript" src="assets/js/jquery.min.js"></script>
<script>if (window.module) module = window.module;</script>
<link rel="stylesheet" type="text/css" href="assets/css/photon/css/photon.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/main.css">
<title>Rayk</title>
</head>
<body>
<header class="toolbar toolbar-header">
<h1 class="title">Rayk</h1>
</header>
<div class="window">
<div class="window-content">
<div class="table-container">
<div class="table-row">
<div class="top-content table-cell" id="top-content">
<h1>Rayk</h1>
<p>Read Anything on Your Kindle</p>
<p>Rayk takes all your big bad PDF files and turns them into cute Kindle friendly ones.</p>
</div>
</div>
<div class="table-row">
<div class="main-content table-cell" id="main-content">
<div class="file-div-empty">
Drag a file here
</div>
<div class="file-div-occupied">
<ul id="completed-file-list" class="list-group"></ul>
</div>
<div class="file-div-occupied">
<ul id="list" class="list-group"></ul>
<!-- <button class="convert-button" onclick="convertFiles()">Convert</button>
<button class="send-button" onclick="sendFiles()">Send To Kindle</button>
Commented these out because conversions automatically trigger now. -->
</div>
</div>
</div>
</div>
<div id="error-div"></div>
<script src="assets/js/file_list.js" charset="utf-8"></script>
<script src="assets/js/convert.js" charset="utf-8"></script>
</div>
</div>
</body>
</html>