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

14 lines
318 B
Plaintext
Raw Normal View History

2024-02-12 20:04:02 +01:00
{{ define "title" }}nourybot - commands in {{ .Channel }}{{ end }}
{{ define "body" }}
2024-02-11 16:54:53 +01:00
{{ with .Commands }}
{{ range . }}
<p>
<b>Name:</b> {{ .Name }} </br>
<b>Level:</b> {{ .Level }} </br>
<b>Description:</b> {{ .Description }} </br>
<b>Text:</b> {{ .Text }} </br>
</p>
{{ end }}
{{ end }}
2024-02-12 20:04:02 +01:00
{{ end }}