mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
19 lines
398 B
Plaintext
19 lines
398 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 }}
|