-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfolder_view.html.mustashe
More file actions
49 lines (44 loc) · 1.19 KB
/
folder_view.html.mustashe
File metadata and controls
49 lines (44 loc) · 1.19 KB
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
<!DOCTYPE html>
<html>
<head>
<title>FileServer</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<p> </p>
<h1>File Server</h1>
<p> </p>
<p> </p>
<table style="width:100%">
<tbody>
<tr>
{{#showIcons}}
<td> </td>
{{/showIcons}}
<td><strong>Name</strong></td>
{{#showSize}}
<td><strong>Size</strong></td>
{{/showSize}}
{{#showDetails}}
<td><strong>Information</strong></td>
{{/showDetails}}
</tr>
{{#dirEntryList}}
<tr>
{{#showIcons}}
<td>{{{fileIcon}}}</td>
{{/showIcons}}
<td>{{fileName}}</td>
{{#showSize}}
<td>{{fileSize}}</td>
{{/showSize}}
{{#showDetails}}
<td>{{fileDetails}}</td>
{{/showDetails}}
</tr>
{{/dirEntryList}}
</tbody>
</table>
<p> </p>
</body>
</html>