blob: 16b89b029b7e7dace48aac6cc09993f2a8ab8a21 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{{define "head" -}}
<title>Commands</title>
{{- end}}
{{define "body" -}}
<section>
<p>Command index</p>
<ul>
{{- range .Commands}}
<li>
<p><a href="https://pkg.go.dev/roseh.moe/cmd/{{.Name}}">{{.Name}}</a> - {{.Description}}</p>
<p><code>go install roseh.moe/cmd/{{.Name}}{{if .Multi}}/...{{end}}@latest</code></p>
</li>
{{- end}}
</ul>
</section>
{{- end}}
|