-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
41 lines (28 loc) · 1.33 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
<html>
<head>
<Title> Circle </Title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="application/javascript" src="public/helper.js"></script>
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.5.0/pure-min.css">
<link rel="stylesheet" href="public/main.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
</head>
<body>
<div id="modebar">
<div id="modefield">
/<input type="text" id="mode"></input>/
</div>
<button id="mode" class="pure-button" >Custom</button>
</div>
<div class='content'>
{{range .Files}}
<div class='dir' data-path={{.Path}}><i class="fa fa-folder"></i> {{.Name}}</div>
{{end}}
</div>
<div class="cmd-bar">
<div id="returnbtn"><a class="pure-button" href='http://localhost:8080'> <i class="fa fa-home"></i>. </a></div>
<div id="pathfield">Click to select, double click to open</div>
<div id="sortbutton"><button class="pure-button" >Declutter</button></div>
</div>
</body>
</html>