minecraft-site/templates/index.html

27 lines
830 B
HTML
Raw Normal View History

2020-03-19 23:20:59 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
2021-02-13 21:18:51 -06:00
<title>{{.Title}}</title>
2020-03-19 23:20:59 -05:00
<style>
html {
font-family: sans-serif;
padding: 10px;
}
</style>
</head>
<body>
2021-02-13 21:18:51 -06:00
<h1>{{.Title}}</h1>
<p>{{.Content}}</p>
2020-04-17 19:53:02 -05:00
<p>Backups are taken and archived periodically, and made available in the <a href="/backups">backup archive</a>.</p>
2021-02-13 21:18:51 -06:00
{{range .Servers}}
<h3>{{.Title}}</h3>
<ul>
2020-03-29 22:28:39 -05:00
<li><b>Description:</b> {{.Description}}</li>
2021-02-13 21:18:51 -06:00
<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}}
2020-03-19 23:20:59 -05:00
</body>
</html>