minecraft-site/templates/index.html
2021-02-13 21:18:51 -06:00

27 lines
830 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>{{.Title}}</title>
<style>
html {
font-family: sans-serif;
padding: 10px;
}
</style>
</head>
<body>
<h1>{{.Title}}</h1>
<p>{{.Content}}</p>
<p>Backups are taken and archived periodically, and made available in the <a href="/backups">backup archive</a>.</p>
{{range .Servers}}
<h3>{{.Title}}</h3>
<ul>
<li><b>Description:</b> {{.Description}}</li>
<li><b>Connection String:</b> {{.Host}}{{if ne .Port 34197}}:{{.Port}}{{end}}</li>
<li><b>Version:</b> {{.Version}}</li>
<li><b>Current players:</b><br>{{.Players}}</li>
</ul>
{{end}}
</body>
</html>