Files
EagleCast/static/email-templates/base.html
T

123 lines
3.4 KiB
HTML
Raw Normal View History

2026-07-09 10:03:32 -04:00
{{ define "header" }}
<!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">
<style>
body {
2026-07-09 15:44:33 -04:00
background-color: #f5f1e8;
font-family: Georgia, 'Iowan Old Style', 'Times New Roman', Times, serif;
font-size: 17px;
line-height: 1.65;
2026-07-09 10:03:32 -04:00
margin: 0;
2026-07-09 15:44:33 -04:00
color: #1c1a16;
2026-07-09 10:03:32 -04:00
}
.wrap {
2026-07-09 15:44:33 -04:00
background-color: #fbf8f1;
2026-07-09 10:03:32 -04:00
padding: 30px;
max-width: 525px;
margin: 0 auto;
2026-07-09 15:44:33 -04:00
border: 2px solid #1c1a16;
border-radius: 0;
2026-07-09 10:03:32 -04:00
}
.header {
2026-07-09 15:44:33 -04:00
border-bottom: 3px double #1c1a16;
2026-07-09 10:03:32 -04:00
padding-bottom: 15px;
margin-bottom: 15px;
}
2026-07-09 15:44:33 -04:00
h1, h2, h3 {
font-family: Georgia, 'Iowan Old Style', 'Times New Roman', Times, serif;
color: #1c1a16;
line-height: 1.2;
}
ul li {
font-weight: bold;
color: #1c1a16;
}
2026-07-09 10:03:32 -04:00
.footer {
text-align: center;
2026-07-09 15:44:33 -04:00
font-family: 'Cascadia Mono', Consolas, Menlo, 'Courier New', monospace;
2026-07-09 10:03:32 -04:00
font-size: 12px;
2026-07-09 15:44:33 -04:00
letter-spacing: 0.08em;
text-transform: uppercase;
color: #837d72;
border-top: 3px double #1c1a16;
margin-top: 24px;
padding-top: 14px;
2026-07-09 10:03:32 -04:00
}
.footer a {
2026-07-09 15:44:33 -04:00
color: #4a463f;
2026-07-09 10:03:32 -04:00
}
.gutter {
padding: 30px;
}
.button {
2026-07-09 15:44:33 -04:00
background: #b23a2c;
color: #fdfaf3 !important;
2026-07-09 10:03:32 -04:00
display: inline-block;
2026-07-09 15:44:33 -04:00
border: 2px solid #b23a2c;
border-radius: 0;
padding: 12px 30px;
2026-07-09 10:03:32 -04:00
text-align: center;
text-decoration: none;
2026-07-09 15:44:33 -04:00
font-family: 'Cascadia Mono', Consolas, Menlo, 'Courier New', monospace;
font-size: 14px;
2026-07-09 10:03:32 -04:00
font-weight: bold;
2026-07-09 15:44:33 -04:00
letter-spacing: 0.08em;
text-transform: uppercase;
2026-07-09 10:03:32 -04:00
}
.button:hover {
2026-07-09 15:44:33 -04:00
background: #8e2c21;
border-color: #8e2c21;
color: #fdfaf3;
2026-07-09 10:03:32 -04:00
}
img {
max-width: 100%;
}
a {
2026-07-09 15:44:33 -04:00
color: #8e2c21;
2026-07-09 10:03:32 -04:00
}
a:hover {
2026-07-09 15:44:33 -04:00
color: #b23a2c;
2026-07-09 10:03:32 -04:00
}
@media screen and (max-width: 600px) {
.wrap {
max-width: auto;
}
.gutter {
padding: 10px;
}
}
</style>
</head>
2026-07-09 15:44:33 -04:00
<body style="background-color: #f5f1e8;">
2026-07-09 10:03:32 -04:00
<div class="gutter">&nbsp;</div>
<div class="wrap">
<div class="header">
{{ if ne LogoURL "" }}
<img src="{{ LogoURL }}" alt="eaglecast" />
{{ end }}
</div>
{{ end }}
{{ define "footer" }}
</div>
2026-07-09 15:44:33 -04:00
2026-07-09 10:03:32 -04:00
<div class="footer">
<p>{{ L.T "public.poweredBy" }} EagleCast</p>
</div>
<div class="gutter">&nbsp;</div>
</body>
</html>
{{ end }}