Try centering content in template
Anirudh Oppiliappan x@icyphox.sh
Thu, 16 Sep 2021 10:48:50 +0530
1 files changed,
20 insertions(+),
12 deletions(-)
jump to
M
templates/html.tpl
→
templates/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>