-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html.mustache
64 lines (64 loc) · 1.66 KB
/
index.html.mustache
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
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Index</title>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.css"
/>
<style>
body {
display: flex;
flex-direction: column;
min-height: calc(100vh - 4em);
max-width: 80em;
margin: 2em auto;
}
main {
flex: 1;
}
footer {
font-size: small;
text-align: center;
}
</style>
</head>
<body>
<main>
<table>
<tr>
<th>Filename</th>
<th>MD5</th>
<th>Content length</th>
<th>Creation time</th>
<th>Last modified</th>
</tr>
{{#items}}
<tr>
<td>
<a href="./{{ name }}" class="filename">
{{ name }}
</a>
</td>
<td><code class="md5">{{ properties.contentSettings.contentMd5 }}<code></td>
<td class="content-length">{{ properties.contentLength }} bytes</td>
<td class="creation-time">{{ properties.creationTime }}</td>
<td class="last-modified">{{ properties.lastModified }}</td>
</tr>
{{/items}}
</table>
</main>
<footer>
An index page powered by <a href="https://github.com/fixpoint/azblob-generate-static-index">fixpoint/azblob-generate-static-index</a>
</footer>
</body>
</html>