-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
32 lines (31 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Directory listing</title>
<link href="vendor/bootstrap-3.3.6/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="app.css" />
</head>
<body>
<div class="container">
<h1>
<span class="glyphicon glyphicon-tasks base-dir-icon" aria-hidden="true"></span>
<span class="current-dir"></span>
</h1>
<div class="browser-view">
No files to show. :(
</div>
<div class="bg-translucent"></div>
<div class="file-view-wrapper">
<img class="file-view-img">
<img class="file-view-prev" src="prev.png">
<img class="file-view-next" src="next.png">
</div>
</div>
<script src="vendor/jquery-2.2.0.min.js"></script>
<script src="vendor/bootstrap-3.3.6/js/bootstrap.min.js"></script>
<script src="app.js"></script>
</body>
</html>