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

13 lines
267 B
Plaintext
Raw Permalink Normal View History

2024-02-12 20:04:02 +01:00
{{ define "title" }}nourybot - timers in {{ .Channel }}{{ end }}
{{ define "body" }}
2024-02-11 15:48:32 +01:00
{{ with .Timers }}
{{ range . }}
<p>
<b>Name:</b> {{ .Name }} </br>
<b>Text:</b> {{ .Text }} </br>
<b>Repeat:</b> {{ .Repeat }} </br>
</p>
{{ end }}
{{ end }}
2024-02-12 20:04:02 +01:00
{{ end }}