Files

17 lines
609 B
Handlebars
Raw Permalink Normal View History

2022-03-30 10:42:47 +02:00
<!DOCTYPE html>
<html>
<head>
<title>Links for {{.PackageDescriptor.Package.Name}}</title>
</head>
<body>
{{- /* PEP 503 Simple Repository API: https://peps.python.org/pep-0503/ */ -}}
2022-03-30 10:42:47 +02:00
<h1>Links for {{.PackageDescriptor.Package.Name}}</h1>
{{range .PackageDescriptors}}
{{$pd := .}}
2022-03-30 10:42:47 +02:00
{{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>
2022-03-30 10:42:47 +02:00
{{end}}
{{end}}
</body>
</html>