hscloud/hswaw/oodviewer/templates/term.html
Serge Bazanski 5e695e8f9b hswaw/oodviewer: init
This brings oodviewer into k0.

oodviewer started as a py2/flask script running on q3k's personal infra,
which is now being turned down.

This is a rewrite of that script into similarly mediocre Go, conforming
to the exact same mediocre JSON API and spartan HTML interface.

This also deploys it into k0 in the oodviewer-prod namespace. It's
already running, but the 'oodviewer.q3k.me' TTL has to expire before it
begins handling traffic.

Change-Id: Ieef1b0f8f0c60e6fa5dbe7701e0a07a4257f99ce
2021-03-07 16:57:02 +01:00

8 lines
179 B
HTML

{{ define "body" }}
<h1>Entries for {{ .Name }}</h1>
<ul>
{{ range .Entries }}
<li>{{ .Entry }} <i>(added by {{ .Author }} on {{ .Added }})</i></li>
{{ end }}
</ul>
{{ end }}