aboutsummaryrefslogtreecommitdiffstats
path: root/templates/api/packages/pypi/simple.tmpl
blob: 85aa730c727eaf7966c2eeda2ef8f7024ae4ec25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!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>