2020-10-31 20:46:38 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
font-family: sans;
|
|
|
|
}
|
|
|
|
.entry {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 20px;
|
|
|
|
min-width: 50%;
|
|
|
|
}
|
|
|
|
.entry_list div:nth-child(odd) {
|
|
|
|
background-color: #ddd;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<title>Server list</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<h1>Server list</h1>
|
|
|
|
|
|
|
|
<div class="entry_list">
|
|
|
|
|
|
|
|
{{#if servers}}
|
|
|
|
{{#each servers}}
|
|
|
|
<div>
|
2020-11-02 04:07:55 +00:00
|
|
|
<a class="entry" href="{{this.path}}/files/">{{this.name}}</a>
|
2020-10-31 20:46:38 +00:00
|
|
|
</div>
|
|
|
|
{{/each}}
|
|
|
|
{{else}}
|
|
|
|
(No servers are running)
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|