listmonk/email-templates/default.tpl

72 lines
1.9 KiB
Smarty
Raw Normal View History

2018-10-25 15:51:47 +02:00
<!doctype html>
<html>
<head>
<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">
2018-10-25 15:51:47 +02:00
<style>
body {
background-color: #F0F1F3;
font-family: 'Helvetica Neue', 'Segoe UI', Helvetica, sans-serif;
font-size: 15px;
line-height: 26px;
margin: 0;
color: #444;
}
2018-10-25 15:51:47 +02:00
.wrap {
background-color: #fff;
padding: 30px;
max-width: 525px;
margin: 0 auto;
border-radius: 5px;
}
2018-10-25 15:51:47 +02:00
.footer {
text-align: center;
font-size: 12px;
2018-10-25 15:51:47 +02:00
color: #888;
}
.footer a {
color: #888;
}
2018-10-25 15:51:47 +02:00
.gutter {
padding: 30px;
}
2018-10-25 15:51:47 +02:00
2018-11-02 19:27:44 +01:00
img {
max-width: 100%;
}
a {
color: #7f2aff;
}
a:hover {
color: #111;
}
@media screen and (max-width: 600px) {
.wrap {
max-width: auto;
}
.gutter {
padding: 10px;
}
}
</style>
</head>
<body style="background-color: #F0F1F3;">
<div class="gutter">&nbsp;</div>
<div class="wrap">
{{ template "content" . }}
</div>
<div class="footer">
<p>Don't want to receive these e-mails? <a href="{{ .UnsubscribeURL }}">Unsubscribe</a></p>
<p>Powered by <a href="https://listmonk.app" target="_blank">listmonk</a></p>
</div>
2018-11-02 11:12:32 +01:00
<div class="gutter">&nbsp;{{ TrackView }}</div>
2018-10-25 15:51:47 +02:00
</body>
</html>