115 lines
3.5 KiB
HTML
115 lines
3.5 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta charset="utf-8"/>
|
|
<title>{{ .Campaign.Subject }}</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
|
|
<base target="_blank">
|
|
<style>
|
|
body {
|
|
|
|
font-family: 'Helvetica Neue', 'Segoe UI', Helvetica, sans-serif;
|
|
background-color: #f7d3d6;
|
|
font-size: 1.1rem;
|
|
line-height: 26px;
|
|
margin: 0;
|
|
color: #444;
|
|
}
|
|
|
|
pre {
|
|
background: #f7d3d6;
|
|
padding: 0.2rem;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border: 1px solid #ddd;
|
|
}
|
|
table td {
|
|
border-color: #ddd;
|
|
padding: 5px;
|
|
}
|
|
|
|
.wrap {
|
|
background-color: #fff;
|
|
padding: 30px;
|
|
max-width: 525px;
|
|
margin: 0 auto;
|
|
border-radius: 5px;
|
|
border-image: linear-gradient(180deg, #f681ae, #f38282, #f7d54d, #6ed46e, #3ed3da, #a48ac9 100%);
|
|
border-image-slice: 2;
|
|
border-top: 0.2rem solid #FC8EAC;
|
|
border-right: 0.2rem solid #FC8EAC;
|
|
border-left: 0.2rem solid #FC8EAC;
|
|
border-bottom: 0.2rem solid #FC8EAC;
|
|
}
|
|
|
|
.button {
|
|
background: #0055d4;
|
|
border-radius: 3px;
|
|
text-decoration: none !important;
|
|
color: #fff !important;
|
|
font-weight: bold;
|
|
padding: 10px 30px;
|
|
display: inline-block;
|
|
}
|
|
.button:hover {
|
|
background: #111;
|
|
}
|
|
|
|
.footer {
|
|
text-align: center;
|
|
font-size: 1rem;
|
|
|
|
}
|
|
.footer a {
|
|
color: #444;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.gutter {
|
|
padding: 30px;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
a {
|
|
color: #f681ae;
|
|
font-weight: bold;
|
|
}
|
|
a:hover, a:active, a:focus {
|
|
color: #a48ac9;
|
|
}
|
|
@media screen and (max-width: 600px) {
|
|
.wrap {
|
|
max-width: auto;
|
|
}
|
|
.gutter {
|
|
padding: 10px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body style="background-color: #f7d3d6;font-family: 'Helvetica Neue', 'Segoe UI', Helvetica, sans-serif;font-size: 15px;line-height: 26px;margin: 0;color: #444;">
|
|
<div class="gutter" style="padding: 30px;"> </div>
|
|
<div class="wrap" style="background-color: #fff;padding: 30px;max-width: 525px;margin: 0 auto;border-radius: 5px;">
|
|
{{ template "content" . }}
|
|
</div>
|
|
|
|
<div class="footer" style="text-align: center;">
|
|
<p>
|
|
<a href="{{ UnsubscribeURL }}">{{ L.T "email.unsub" }}</a>
|
|
|
|
<a href="{{ MessageURL }}">{{ L.T "email.viewInBrowser" }}</a>
|
|
|
|
<a href="https://mailinglist.put.mn/archive">View Past Emails</a>
|
|
</p>
|
|
</div>
|
|
<div class="gutter" style="padding: 30px;"> {{ TrackView }}</div>
|
|
</body>
|
|
</html>
|