-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
56 lines (53 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Swift UI</title>
<script data-main="js/main" src="js/libs/require.js"></script>
<script src="js/config.js"></script>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap-theme.css">
<link rel="stylesheet" href="css/application.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="wrap">
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Swift UI</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#" title="Browse containers, folders, and objects"><i
class="glyphicon glyphicon-home"></i> Browser</a></li>
<!--<li><a href="#" title="Manage Accounts"><span class="glyphicon glyphicon-list"></span> Accounts</a>
</li>
<li><a href="#" title="Manage Users"><span class="glyphicon glyphicon-user"></span> Users</a></li>-->
</ul>
<ul class="nav navbar-nav navbar-right">
<li id="login-entry">
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<div id="browser-tree" class="col-md-3">
</div>
<div id="content" class="col-md-9">
</div>
</div>
</div>
</div>
</body>
</html>