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

19 lines
415 B
Plaintext
Raw Normal View History

2024-02-12 20:04:02 +01:00
{{ define "title" }}nourybot - commands{{ end }}
{{ define "body" }}
2023-12-20 02:06:05 +01:00
<p>General commands:</p>
{{ with .Commands }}
{{ range . }}
<p>
<b>Name:</b> {{ .Name }} </br>
{{ if .Alias }}
<b>Alias:</b> {{ .Alias}} </br>
{{ else }}
{{ end}}
<b>Description:</b> {{ .Description }} </br>
<b>Level:</b> {{ .Level }} </br>
<b>Usage:</b> {{ .Usage }} </br>
</p>
{{ end }}
{{ end }}
2024-02-12 20:04:02 +01:00
{{ end }}