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.

release.tmpl 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. <title>{{.Subject}}</title>
  6. <style>
  7. blockquote { padding-left: 1em; margin: 1em 0; border-left: 1px solid grey; color: #777}
  8. .footer { font-size:small; color:#666;}
  9. </style>
  10. </head>
  11. {{$release_url := printf "<a href='%s'>%s</a>" (.Release.HTMLURL | Escape) (.Release.TagName | Escape)}}
  12. {{$repo_url := printf "<a href='%s'>%s</a>" (.Release.Repo.HTMLURL | Escape) (.Release.Repo.FullName | Escape)}}
  13. <body>
  14. <p>
  15. {{.locale.Tr "mail.release.new.text" .Release.Publisher.Name $release_url $repo_url | Str2html}}
  16. </p>
  17. <h4>{{.locale.Tr "mail.release.title" .Release.Title}}</h4>
  18. <p>
  19. {{.locale.Tr "mail.release.note"}}<br>
  20. {{- if eq .Release.RenderedNote ""}}
  21. {{else}}
  22. {{.Release.RenderedNote | Str2html}}
  23. {{end -}}
  24. </p>
  25. <br><br>
  26. <p>
  27. ---
  28. <br>
  29. {{.locale.Tr "mail.release.downloads"}}
  30. <ul>
  31. {{if not .DisableDownloadSourceArchives}}
  32. <li>
  33. <a href="{{.Release.Repo.Link}}/archive/{{.Release.TagName | PathEscapeSegments}}.zip" rel="nofollow"><strong>{{.locale.Tr "mail.release.download.zip"}}</strong></a>
  34. </li>
  35. <li>
  36. <a href="{{.Release.Repo.Link}}/archive/{{.Release.TagName | PathEscapeSegments}}.tar.gz" rel="nofollow"><strong>{{.locale.Tr "mail.release.download.targz"}}</strong></a>
  37. </li>
  38. {{end}}
  39. {{if .Release.Attachments}}
  40. {{range .Release.Attachments}}
  41. <li>
  42. <a target="_blank" rel="noopener noreferrer" href="{{.DownloadURL}}">
  43. <strong>{{.Name}} ({{.Size | FileSize}})</strong>
  44. </a>
  45. </li>
  46. {{end}}
  47. {{end}}
  48. </ul>
  49. </p>
  50. <div class="footer">
  51. <p>
  52. ---
  53. <br>
  54. <a href="{{.Link}}">{{.locale.Tr "mail.view_it_on" AppName}}</a>.
  55. </p>
  56. </div>
  57. </body>
  58. </html>