forked from mohamnag/nginx-file-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (68 loc) · 2.2 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>File Browser</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css" -->
<link href="css/vendor/normalize.css" rel="stylesheet" type="text/css">
<link href="css/vendor/skeleton.css" rel="stylesheet" type="text/css">
<link href="css/main.css" rel="stylesheet" type="text/css">
<script src="js/vendor/jquery-2.2.0.min.js"></script>
<script src="js/vendor/moment-with-locales.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<div class="container">
<h1>File Browser</h1>
<div class="controls">
<span>sort list by:</span>
<label>
date
<input type="radio" name="sort" value="date" checked>
</label>
<label>
name
<input type="radio" name="sort" value="name">
</label>
<label>
size
<input type="radio" name="sort" value="size">
</label>
<span>theme:</span>
<label>
light
<input type="radio" name="theme" value="" checked>
</label>
<label>
dark
<input type="radio" name="theme" value="dark">
</label>
<span>search:</span>
<label>
<input type="text" name="keyword" id="keyword" value="">
<!--input type="submit" name="search" id="sbmt" value="Search" -->
<button id="btn">Search</button>
</label>
</div>
<ul id="file-list" class="file-list">
<li>
<a href="#" class="file-name file-link"></a>
<span class="file-date"></span>
<span class="file-size"></span>
</li>
</ul>
</div>
<footer>
<div class="container">
<small>
<a href="https://github.com/mohamnag/nginx-file-browser">nginx file browser</a>
</small>
<small>
icons by <a href="http://www.freepik.com" title="Freepik">Freepik</a>
from <a href="http://www.flaticon.com" title="Flaticon">flaticon.com</a>
</small>
</div>
</footer>
</body>
</html>