summaryrefslogtreecommitdiffstats
path: root/templates/cmd-index.html.template
blob: fb8c6263c2e2a8ef9cab361927203fbe233b1312 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{define "head"}}
	<title>Commands</title>
{{end}}

<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>