41 lines
1 KiB
HTML
41 lines
1 KiB
HTML
{{ template "_base.html" . }}
|
|
{{ define "title" }}WissKI Distillery{{ end }}
|
|
|
|
{{ define "header/time" }}
|
|
<!-- no header/time -->
|
|
{{ end }}
|
|
{{ define "header"}}
|
|
<!-- no header -->
|
|
{{ end }}
|
|
|
|
{{ define "content" }}
|
|
<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>
|
|
<small>
|
|
{{ .Statistics.Bundles.Summary }}
|
|
|
|
{{ $edit := .Statistics.Bundles.LastEdit }}
|
|
{{ if $edit.Valid }}
|
|
<br />
|
|
last edited {{ $edit.Time.Format "2006-01-02T15:04:05Z07:00" }}
|
|
{{ end }}
|
|
</small>
|
|
</p>
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|