-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate.html
95 lines (91 loc) · 2.6 KB
/
template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html
xmlns="http://www.w3.org/1999/xhtml"
xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
style="line-height: inherit"
>
<head>
<!--[if gte mso 9
]><xml
><o:OfficeDocumentSettings
><o:AllowPNG /><o:PixelsPerInch
>96</o:PixelsPerInch
></o:OfficeDocumentSettings
></xml
><!
[endif]-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width" />
<!--[if !mso]><!-->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!--<![endif]-->
<style type="text/css">
body,
td {
font-size: 17px;
font-weight: 400;
line-height: 28px;
max-width: 30em;
font-family: "Inter", "Avenir Next", "Open Sans", -apple-system,
BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
img {
max-width: 350px;
margin: 0 auto;
}
a {
text-size-adjust: 100%;
text-decoration-line: none;
text-decoration-style: initial;
text-decoration-color: initial;
font-weight: 600 !important;
color: #56876d;
}
code {
font-size: 16px;
font-family: monospace;
}
</style>
</head>
<body>
<table
align="center"
style="text-size-adjust: 100%; border-collapse: collapse !important"
>
<tbody>
<tr>
<td align="center" valign="top" style="text-size-adjust: 100%">
<table
style="
text-size-adjust: 100%;
max-width: 600px;
text-align: left;
border-collapse: collapse !important;
"
>
<tbody>
<tr>
<td
style="
text-size-adjust: 100%;
padding-top: 0px;
padding-right: 18px;
padding-bottom: 14px;
padding-left: 18px;
"
>
<h1> {{.Title}} </h1>
<p style="font-size: 1.2em;"> {{.Description}} </p>
{{.Content}}
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</body>
</html>