all repos — navani @ dff1368e1df52da2d2bec04bb6fd06acdb90a823

forlater's primary mail processing service

templates/html.tpl (view raw)

 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
<!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">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta name="x-apple-disable-message-reformatting">
  
  <style type="text/css">
    img, video {
       align: center;
       object-fit: cover;
       width: 400px;
       height: 200px;
    }

    body {
      margin: 0;
      padding: 0;
      max-width: 640px;
    }
    a[x-apple-data-detectors='true'] {
      color: inherit !important;
      text-decoration: none !important;
    }

    .page {
      font-family: serif;
    }
  </style>
</head>


<table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
        <td align="center">
          <body>
            <em>original link</em>: <a href="{{ .URL }}">{{ .URL }}</a>
            <h1>
              {{ .Title }}
            </h1>
            <h2>
              {{ .Byline }}
            </h2>
            <hr>
            {{ .Content }}
          </body>

        </td>
    </tr>
</table>

</html>