2020-09-10 17:27:46 +00:00
|
|
|
package templates
|
|
|
|
|
|
|
|
var Vanity = `
|
|
|
|
<h1><a href="../">Index</a></h1>
|
|
|
|
<hr/>
|
|
|
|
<p><strong>Name: </strong>{{.Package.Name}}</p>
|
2020-09-12 01:38:18 +00:00
|
|
|
<p><strong>Source: </strong><a href="{{.Package.WebURL}}">{{.Package.WebURL}}</a></p>
|
2020-09-10 17:27:46 +00:00
|
|
|
{{if .Package.Description}}<p><strong>Description: </strong>{{.Package.Description}}</p>{{end}}
|
|
|
|
<p><strong>Documentation: <a href="https://pkg.go.dev/{{.Package.Module}}">https://pkg.go.dev/{{.Package.Module}}</a></strong></p>
|
|
|
|
`
|