mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
609 B
16 lines
609 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Links for {{.PackageDescriptor.Package.Name}}</title>
|
|
</head>
|
|
<body>
|
|
{{- /* PEP 503 – Simple Repository API: https://peps.python.org/pep-0503/ */ -}}
|
|
<h1>Links for {{.PackageDescriptor.Package.Name}}</h1>
|
|
{{range .PackageDescriptors}}
|
|
{{$pd := .}}
|
|
{{range .Files}}
|
|
<a href="{{$.RegistryURL}}/files/{{$pd.Package.LowerName}}/{{$pd.Version.Version}}/{{.File.Name}}#sha256={{.Blob.HashSHA256}}"{{if $pd.Metadata.RequiresPython}} data-requires-python="{{$pd.Metadata.RequiresPython}}"{{end}}>{{.File.Name}}</a><br>
|
|
{{end}}
|
|
{{end}}
|
|
</body>
|
|
</html>
|
|
|