blob: 6f4f7ce86857985ec17acba2d7293f4c3b50aad2 (
plain)
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
|
package master_ui
import (
"html/template"
)
var StatusTpl = template.Must(template.New("status").Parse(`<!DOCTYPE html>
<html>
<head>
<title>SeaweedFS Filer</title>
<link rel="icon" href="http://7viirv.com1.z0.glb.clouddn.com/seaweed_favicon.png" sizes="32x32" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="page-header">
<h1>
<img src="http://7viirv.com1.z0.glb.clouddn.com/seaweed50x50.png"></img>
SeaweedFS Filer
</h1>
</div>
<div class="row">
{{.Path}}
</div>
<div class="row">
<ul>
{{$path := .Path }}
{{ range $dirs_index, $dir := .Directories }}
<li>
<a href= {{ print $path $dir.Name "/"}} >
{{ $dir.Name }}
</a>
</li>
{{ end }}
{{ range $file_index, $file := .Files }}
<li>
{{ $file.Name }}
</li>
{{ end }}
</ul>
</div>
{{if .ShouldDisplayLoadMore}}
<div class="row">
<a href= {{ print .Path "?limit=" .Limit "&lastFileName=" .LastFileName}} >
Load more
</a>
</div>
{{end}}
</div>
</body>
</html>
`))
|