-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
59 lines (58 loc) · 1.5 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
57
58
59
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Directory Contents</title>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<link
rel="stylesheet"
href="https://code.getmdl.io/1.3.0/material.green-red.min.css"
/>
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<style>
tr {
cursor: pointer;
}
.footer {
padding-top: 24px;
font-size: 10px;
}
</style>
</head>
<body style="margin: 16px">
<div id="container">
<table class="mdl-data-table mdl-js-data-table mdl-shadow--2dp">
<thead>
<tr>
<th class="mdl-data-table__cell--non-numeric">Filename</th>
<th></th>
<th class="mdl-data-table__cell--non-numeric">Size</th>
<th class="mdl-data-table__cell--non-numeric">Update</th>
<th class="mdl-data-table__cell--non-numeric">Decode as</th>
</tr>
</thead>
<tbody>
<tr>
<td class="mdl-data-table__cell--non-numeric">
<a href="../" class="name">..</a>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
$rows
</tbody>
</table>
</div>
<div class="footer">
Powered by
<a href="https://github.com/Artsdatabanken/tiny-tileserver"
>tiny-tileserver</a
>
</div>
</body>
</html>