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.

simple.tmpl 519B

123456789101112131415
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Links for {{.PackageDescriptor.Package.Name}}</title>
  5. </head>
  6. <body>
  7. <h1>Links for {{.PackageDescriptor.Package.Name}}</h1>
  8. {{range .PackageDescriptors}}
  9. {{$p := .}}
  10. {{range .Files}}
  11. <a href="{{$.RegistryURL}}/files/{{$p.Package.LowerName}}/{{$p.Version.Version}}/{{.File.Name}}#sha256-{{.Blob.HashSHA256}}"{{if $p.Metadata.RequiresPython}} data-requires-python="{{$p.Metadata.RequiresPython}}"{{end}}>{{.File.Name}}</a><br>
  12. {{end}}
  13. {{end}}
  14. </body>
  15. </html>