mirror-nourybot/web/templates/channelcommands.page.gohtml
2024-02-12 20:04:02 +01:00

14 lines
318 B
Plaintext

{{ define "title" }}nourybot - commands in {{ .Channel }}{{ end }}
{{ define "body" }}
{{ 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 }}
{{ end }}