2020-08-23 18:03:18 +03:00
<!DOCTYPE html>
<html>
<head>
2023-03-27 19:05:51 +03:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
2020-08-23 18:03:18 +03: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 17:43:30 +03: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 18:03:18 +03:00
<body>
2021-03-13 00:47:52 +03:00
<p>
2024-02-15 00:48:45 +03:00
{{ .locale .Tr "mail.release.new.text" .Release .Publisher .Name ( $ release_url | Safe ) ( $ repo_url | Safe ) }}
2021-03-13 00:47:52 +03:00
</p>
2022-06-27 23:58:46 +03:00
<h4> {{ .locale .Tr "mail.release.title" .Release .Title }} </h4>
2020-08-23 18:03:18 +03:00
<p>
2022-06-27 23:58:46 +03:00
{{ .locale .Tr "mail.release.note" }} <br>
2020-08-23 18:03:18 +03:00
{{ - if eq .Release .RenderedNote "" }}
{{ else }}
{{ .Release .RenderedNote | Str2html }}
{{ end - }}
</p>
<br><br>
<p>
2021-04-11 06:46:37 +03:00
---
2020-08-23 18:03:18 +03:00
<br>
2022-06-27 23:58:46 +03:00
{{ .locale .Tr "mail.release.downloads" }}
2020-08-23 18:03:18 +03:00
<ul>
2022-07-31 19:57:02 +03:00
{{ if not .DisableDownloadSourceArchives }}
2020-08-23 18:03:18 +03:00
<li>
2022-06-27 23:58:46 +03: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 18:03:18 +03:00
</li>
<li>
2022-06-27 23:58:46 +03: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 18:03:18 +03:00
</li>
2022-07-31 19:57:02 +03:00
{{ end }}
2020-08-23 18:03:18 +03: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 23:58:46 +03:00
<a href=" {{ .Link }} "> {{ .locale .Tr "mail.view_it_on" AppName }} </a>.
2020-08-23 18:03:18 +03:00
</p>
</div>
</body>
</html>