mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
19 lines
415 B
Plaintext
19 lines
415 B
Plaintext
{{ define "title" }}nourybot - commands{{ end }}
|
|
{{ define "body" }}
|
|
<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 }}
|
|
{{ end }}
|