-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (68 loc) · 2.74 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
<!DOCTYPE html>
<html>
<head>
<title>Leitner - Home</title>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width" />
<link rel="shortcut icon" type="image/x-icon" href='./img/favicon.png' />
<link rel="stylesheet" type="text/css" href="./css/style.css?v=20200616-4" />
<!-- PWA -->
<link rel="shortcut icon" type="image/x-icon" href='./img/logo.png?v=20200611-1'/>
<link rel="manifest" href="./manifest.json">
<!-- iOS -->
<link rel="apple-touch-icon" href="./img/logo-bg.png?v=20200611-2" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-status-bar-style" content="#00a2cf" />
<meta name="mobile-web-app-title" content="Leitner" />
</head>
<body>
<header id="head">
<div class="container">
<div id="header">
<div id="title"><a href="./">Leitner</a></div>
<div id="menu">
<img id="menu-button" src="./img/menu.png" />
<div id="menu-content">
<a href="./list.html">List</a>
<a href="./review.html">Review</a>
<a id="export" href="javascript:void(0)">Export</a>
<a id="import" href="javascript:void(0)">Import</a>
<a id="sync" href="javascript:void(0)">Sync</a>
</div>
</div>
</div>
</div>
</header>
<div id="content">
<div class="container">
<div id="form">
<div class="inputbox">
<textarea id="front" placeholder="Front..." oninput="autoGrow(this);"></textarea>
</div>
<div class="inputbox">
<textarea id="back" placeholder="Back..." oninput="autoGrow(this);"></textarea>
</div>
<div class="buttonbox">
<button id="add">Add</button>
</div>
</div>
</div>
</div>
<footer id="footer">
<div class="container">
<div id="notice">
<input id="file" type="file" style="display: none;" />
<p>Leitner by <a target="_blank" href="http://misam.ir">Misam</a></p>
</div>
</div>
</footer>
<script src="./js/jquery-1.11.1.min.js"></script>
<script src="./js/FileSaver.min.js"></script>
<script src="./js/Dropbox-sdk.min.js"></script>
<script src="./js/snackbar.min.js"></script>
<script src="./js/utils.js?v=20200613-1"></script>
<script src="./js/db.js?v=20201111-1"></script>
<script src="./js/index.js?v=20200617-3"></script>
<script src="./app.js?v=20200616-4"></script>
</body>
</html>