1
0
Fork 0
go.deuill.org/themes/go-mod/layouts/_default/single.html

16 lines
604 B
HTML

{{partial "header.html" .}}
<main>
<h1>{{.Title}} <aside>{{.Description}}</aside></h1>
<dl>
<dt>Install</dt>
<dd><pre>go install {{.Params.module.root_path}}{{.Params.module.sub_path}}@latest</pre></dd>
<dt>Documentation</dt>
<dd><a href="https://pkg.go.dev/{{.Params.module.root_path}}{{.Params.module.sub_path}}">https://pkg.go.dev/{{.Params.module.root_path}}{{.Params.module.sub_path}}</a></dd>
<dt>Code</dt>
<dd><a href="{{.Params.repository.http_url}}">{{.Params.repository.http_url}}</a></dd>
</dl>
</main>
{{partial "footer.html" .}}