wisski-cloud-distillery/internal/component/home/home.html
2022-11-16 13:07:08 +01:00

28 lines
No EOL
628 B
HTML

<!DOCTYPE html>
<link rel="stylesheet" href="/static/home/index.css">
<title>WissKI Distillery</title>
<h1>WissKI Distillery</h1>
<p>
For more information, see <a href="{{ .SelfRedirect }}">{{ .SelfRedirect }}</a>.
</p>
<h2>WissKIs on this Distillery</h2>
<div>
{{range .Instances}}
{{ if .Running }}
<h3>{{.Slug}}</h3>
<p>
<a href="{{.URL}}" target="_blank" rel="noopener noreferrer">{{.URL}}</a><br />
</p>
{{ end }}
{{ end }}
</div>
<footer>
Generated at <code>{{ .Time }}</code>
</footer>
<script src="/static/home/index.js"></script>