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

13 lines
249 B
Plaintext
Raw Permalink Normal View History

2024-02-12 20:04:02 +01:00
{{ define "title" }}nourybot - timer {{ end }}
{{ define "body" }}
{{ 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 }}