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

19 lines
398 B
Plaintext
Raw Normal View History

2024-02-12 20:04:02 +01:00
{{ 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>
2024-02-12 20:04:02 +01:00
{{ end }}