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

19 lines
390 B
Plaintext
Raw Normal View History

{{define "title"}}nourybot{{end}}
{{define "body"}}
2023-12-20 02:06:05 +01:00
<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 }}
2023-12-20 02:06:05 +01:00
</table>
{{end}}