aboutsummaryrefslogtreecommitdiff
path: root/cmd/within.website/tmpl/index.tmpl
blob: bc9da6b0c5fb7f2e2ef423617b10a43db4388ff6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{template "header" .}}

This vanity domain houses a lot of <a href="https://xeiaso.net">Xe Iaso's</a> custom Go packages. Here is a list of all of the packages currently tracked:

<ul>
{{range .Repos}}
    <li><a href="#{{.Repo}}">{{.Repo}}</a></li>
{{end}}
</ul>

<img src="https://pride-badges.pony.workers.dev/static/v1?label=enbyware&labelColor=%23555&stripeWidth=8&stripeColors=FCF434%2CFFFFFF%2C9C59D1%2C2C2C2C" />

{{range .Repos}}
<h2 id="{{.Repo}}">within.website/{{.Repo}}</h2>

<p><a href="https://pkg.go.dev/within.website/{{.Repo}}"><img src="https://pkg.go.dev/badge/within.website/{{.Repo}}.svg" alt="Go Reference"></a> <a href="https://{{.Domain}}/{{.User}}/{{.Repo}}"><img alt="Source code link" src="https://img.shields.io/badge/source-link-green"></a></p>

<p>{{.Description}}</p>

<code><pre>go get within.website/{{.Repo}}</pre></code>
{{end}}

{{template "footer" .}}