mirror-nourybot/web/templates/home.page.gohtml

19 lines
390 B
Plaintext

{{define "title"}}nourybot{{end}}
{{define "body"}}
<p>Channels connected to:</hp>
<table>
<tr>
<th>Twitch ID</th>
<th>Username</th>
</tr>
{{ with .Channels }}
{{ range . }}
<tr>
<td>{{ .TwitchID }}</td>
<td>{{ .Login }}</td>
</tr>
{{ end }}
{{ end }}
</table>
{{end}}