40 lines
1.1 KiB
HTML
40 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>WissKI Distillery</title>
|
|
{{ CSS }}
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>WissKI Distillery</h1>
|
|
</header>
|
|
<main>
|
|
<div class="pure-g">
|
|
<div class="pure-u-1">
|
|
<p>
|
|
For more information, see <a href="{{ .SelfRedirect }}">{{ .SelfRedirect }}</a>.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="pure-u-1">
|
|
<h2>WissKIs on this Distillery</h2>
|
|
</div>
|
|
|
|
{{range .Instances}}
|
|
{{ if .Running }}
|
|
<div class="pure-u-1-3">
|
|
<h3>{{.Slug}}</h3>
|
|
<p>
|
|
<a href="{{.URL}}" target="_blank" rel="noopener noreferrer">{{.URL}}</a><br>
|
|
</p>
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
</main>
|
|
|
|
<footer>
|
|
Generated at <code>{{ .Time }}</code>
|
|
</footer>
|
|
|
|
{{ JS }}
|
|
</body>
|