2020-10-31 15:28:27 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<style>
|
|
|
|
body {
|
2020-11-02 19:17:22 +00:00
|
|
|
font-family: sans-serif;
|
2020-10-31 15:28:27 +00:00
|
|
|
}
|
2020-11-25 02:17:08 +00:00
|
|
|
td {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
td > * {
|
2020-10-31 15:28:27 +00:00
|
|
|
padding: 10px;
|
2020-11-25 02:17:08 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.entry {
|
2020-11-08 15:53:09 +00:00
|
|
|
text-decoration: none;
|
2020-10-31 15:28:27 +00:00
|
|
|
}
|
2020-11-08 17:58:14 +00:00
|
|
|
.grey {
|
|
|
|
color: #888;
|
2020-11-25 02:17:08 +00:00
|
|
|
text-align: right;
|
2020-11-08 17:58:14 +00:00
|
|
|
}
|
|
|
|
.entry_list {
|
|
|
|
width: 100%;
|
2020-11-25 02:17:08 +00:00
|
|
|
border-collapse: collapse;
|
2020-11-08 17:58:14 +00:00
|
|
|
}
|
2020-11-25 02:17:08 +00:00
|
|
|
tbody tr:nth-child(odd) {
|
2020-10-31 15:28:27 +00:00
|
|
|
background-color: #ddd;
|
|
|
|
}
|
|
|
|
</style>
|
2020-11-08 15:53:09 +00:00
|
|
|
<title>{{path}} {{server_name}}</title>
|
2020-10-31 15:28:27 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2020-11-08 15:53:09 +00:00
|
|
|
<p>{{server_name}}</p>
|
|
|
|
|
|
|
|
<p>{{path}}</p>
|
|
|
|
|
2020-11-08 17:58:14 +00:00
|
|
|
<table class="entry_list">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Size</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2020-10-31 15:28:27 +00:00
|
|
|
|
2020-11-08 17:58:14 +00:00
|
|
|
<tr>
|
|
|
|
<td><a class="entry" href="../">📁 ../</a></td>
|
|
|
|
<td></td>
|
|
|
|
</tr>
|
2020-10-31 15:28:27 +00:00
|
|
|
|
2020-10-31 02:31:03 +00:00
|
|
|
{{#each entries}}
|
2020-11-08 17:58:14 +00:00
|
|
|
<tr>
|
|
|
|
<td><a class="entry" href="{{this.encoded_file_name}}{{this.trailing_slash}}">
|
|
|
|
{{this.icon}} {{this.file_name}}{{this.trailing_slash}}</a></td>
|
|
|
|
<td><span class="grey">{{this.size}}</span></td>
|
|
|
|
</tr>
|
2020-10-31 02:31:03 +00:00
|
|
|
{{/each}}
|
2020-10-31 15:28:27 +00:00
|
|
|
|
2020-11-08 17:58:14 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2020-10-31 15:28:27 +00:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|