-
Notifications
You must be signed in to change notification settings - Fork 0
/
list.html
41 lines (41 loc) · 1.34 KB
/
list.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
<!DOCTYPE html>
<html>
<head>
<title>Leitner - List</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" />
</head>
<body>
<header id="head">
<div class="container">
<div id="header">
<div id="title"><a href="./">Leitner</a></div>
<div id="menu">
<input type="input" id="search" placeholder="Search..." />
</div>
</div>
</div>
</header>
<div id="content">
<div class="container">
<div id="list">
<ul></ul>
</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/utils.js?v=20200613-1"></script>
<script src="./js/db.js?v=20201111-1"></script>
<script src="./js/list.js?v=20201111-2"></script>
</body>
</html>