forked from hokein/electron-sample-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (46 loc) · 1.69 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
<!DOCTYPE html>
<html>
<head>
<title>File Explorer</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<script type="text/javascript" src="js/jquery-1.7.2.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div style="position: absolute; left: 10px; right: 10px; top: 10px; bottom: 10px;">
<div class="well" style="float: left; width: 160px; padding: 8px;">
<ul class="nav nav-list" id="sidebar">
<li class="nav-header">Favorites</li>
<li class="active">
<a href="#" nw-path="~/"><i class="icon-white icon-home"></i> Home</a>
</li>
<li>
<a href="#" nw-path="~/Documents"><i class="icon-book"></i> Documents</a>
</li>
<li>
<a href="#" nw-path="~/Pictures"><i class="icon-picture"></i> Pictures</a>
</li>
<li>
<a href="#" nw-path="~/Music"><i class="icon-music"></i> Music</a>
</li>
<li>
<a href="#" nw-path="~/Movies"><i class="icon-film"></i> Movies</a>
</li>
<li class="nav-header">Network</li>
<li class="divider"></li>
<li><a href="#" nw-call="about" onclick="App.about()"><i class="icon-flag"></i> About</a></li>
</ul>
</div>
<div style="float: left; position: absolute; left: 210px; right: 0; top: 0; bottom: 50px">
<div class="row">
<ul id="addressbar" class="breadcrumb"></ul>
</div>
<div class="row" style="background: #FFF; -webkit-border-radius: 2px; margin: -5px 1px 0 -19px; height: 100%; overflow: auto">
<ul style="margin: 5px;" id="files"></ul>
</div>
</div>
</div>
</body>
</html>