summaryrefslogtreecommitdiffstats
path: root/templates/cmd-index.html.template
blob: e239ef0bd771efd5e921d6b17a8b74591397e310 (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}}