all repos — navani @ dff1368e1df52da2d2bec04bb6fd06acdb90a823

forlater's primary mail processing service

Try centering content in template
Anirudh Oppiliappan x@icyphox.sh
Thu, 16 Sep 2021 10:48:50 +0530
commit

dff1368e1df52da2d2bec04bb6fd06acdb90a823

parent

237e72d1efd0e5c3c940f03595c6b891f6ae2455

1 files changed, 20 insertions(+), 12 deletions(-)

jump to
M templates/html.tpltemplates/html.tpl

@@ -24,21 +24,29 @@ text-decoration: none !important;

} .page { - font-family: serif; + font-family: serif; } </style> </head> -<body> - <em>original link</em>: <a href="{{ .URL }}">{{ .URL }}</a> - <h1> - {{ .Title }} - </h1> - <h2> - {{ .Byline }} - </h2> - <hr> - {{ .Content }} -</body> + +<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>