2020-08-23 15:03:18 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2023-03-27 16:05:51 +00:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
2020-08-23 15:03:18 +00:00
|
|
|
<title>{{.Subject}}</title>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
blockquote { padding-left: 1em; margin: 1em 0; border-left: 1px solid grey; color: #777}
|
|
|
|
.footer { font-size:small; color:#666;}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
2023-03-03 14:43:30 +00:00
|
|
|
{{$release_url := printf "<a href='%s'>%s</a>" (.Release.HTMLURL | Escape) (.Release.TagName | Escape)}}
|
|
|
|
{{$repo_url := printf "<a href='%s'>%s</a>" (.Release.Repo.HTMLURL | Escape) (.Release.Repo.FullName | Escape)}}
|
2020-08-23 15:03:18 +00:00
|
|
|
<body>
|
2021-03-12 21:47:52 +00:00
|
|
|
<p>
|
2022-06-27 20:58:46 +00:00
|
|
|
{{.locale.Tr "mail.release.new.text" .Release.Publisher.Name $release_url $repo_url | Str2html}}
|
2021-03-12 21:47:52 +00:00
|
|
|
</p>
|
2022-06-27 20:58:46 +00:00
|
|
|
<h4>{{.locale.Tr "mail.release.title" .Release.Title}}</h4>
|
2020-08-23 15:03:18 +00:00
|
|
|
<p>
|
2022-06-27 20:58:46 +00:00
|
|
|
{{.locale.Tr "mail.release.note"}}<br>
|
2020-08-23 15:03:18 +00:00
|
|
|
{{- if eq .Release.RenderedNote ""}}
|
|
|
|
{{else}}
|
|
|
|
{{.Release.RenderedNote | Str2html}}
|
|
|
|
{{end -}}
|
|
|
|
</p>
|
|
|
|
<br><br>
|
|
|
|
<p>
|
2021-04-11 03:46:37 +00:00
|
|
|
---
|
2020-08-23 15:03:18 +00:00
|
|
|
<br>
|
2022-06-27 20:58:46 +00:00
|
|
|
{{.locale.Tr "mail.release.downloads"}}
|
2020-08-23 15:03:18 +00:00
|
|
|
<ul>
|
2022-07-31 16:57:02 +00:00
|
|
|
{{if not .DisableDownloadSourceArchives}}
|
2020-08-23 15:03:18 +00:00
|
|
|
<li>
|
2022-06-27 20:58:46 +00:00
|
|
|
<a href="{{.Release.Repo.Link}}/archive/{{.Release.TagName | PathEscapeSegments}}.zip" rel="nofollow"><strong>{{.locale.Tr "mail.release.download.zip"}}</strong></a>
|
2020-08-23 15:03:18 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
2022-06-27 20:58:46 +00:00
|
|
|
<a href="{{.Release.Repo.Link}}/archive/{{.Release.TagName | PathEscapeSegments}}.tar.gz" rel="nofollow"><strong>{{.locale.Tr "mail.release.download.targz"}}</strong></a>
|
2020-08-23 15:03:18 +00:00
|
|
|
</li>
|
2022-07-31 16:57:02 +00:00
|
|
|
{{end}}
|
2020-08-23 15:03:18 +00:00
|
|
|
{{if .Release.Attachments}}
|
|
|
|
{{range .Release.Attachments}}
|
|
|
|
<li>
|
|
|
|
<a target="_blank" rel="noopener noreferrer" href="{{.DownloadURL}}">
|
|
|
|
<strong>{{.Name}} ({{.Size | FileSize}})</strong>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
</ul>
|
|
|
|
</p>
|
|
|
|
<div class="footer">
|
|
|
|
<p>
|
|
|
|
---
|
|
|
|
<br>
|
2022-06-27 20:58:46 +00:00
|
|
|
<a href="{{.Link}}">{{.locale.Tr "mail.view_it_on" AppName}}</a>.
|
2020-08-23 15:03:18 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|