Add optional tags back

This commit is contained in:
Leandro Facchinetti 2020-08-09 22:53:32 +01:00
parent f9d826fe54
commit c6540fc54c
1 changed files with 5 additions and 0 deletions

View File

@ -128,6 +128,7 @@ async function addEntryToFeed(
function layout(content: string): string { function layout(content: string): string {
return `<!DOCTYPE html> return `<!DOCTYPE html>
<html lang="en"> <html lang="en">
<head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kill the Newsletter!</title> <title>Kill the Newsletter!</title>
@ -137,6 +138,8 @@ function layout(content: string): string {
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="icon" type="image/x-icon" href="/favicon.ico"> <link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="stylesheet" type="text/css" href="/styles.css"> <link rel="stylesheet" type="text/css" href="/styles.css">
</head>
<body>
<header> <header>
<h1><a href="/">Kill the Newsletter!</a></h1> <h1><a href="/">Kill the Newsletter!</a></h1>
<p>Convert email newsletters into Atom feeds</p> <p>Convert email newsletters into Atom feeds</p>
@ -144,6 +147,8 @@ function layout(content: string): string {
</header> </header>
<main>${content}</main> <main>${content}</main>
<footer><p>By <a href="https://leafac.com">Leandro Facchinetti</a> · <a href="https://github.com/leafac/kill-the-newsletter.com">Source</a> · <a href="${ISSUE_REPORT}">Report an Issue</a></p></footer> <footer><p>By <a href="https://leafac.com">Leandro Facchinetti</a> · <a href="https://github.com/leafac/kill-the-newsletter.com">Source</a> · <a href="${ISSUE_REPORT}">Report an Issue</a></p></footer>
</body>
</html>
`; `;
} }