This commit is contained in:
parent
6de1da51fe
commit
93b99aa113
18
index.ts
18
index.ts
|
@ -164,24 +164,24 @@ function layout(content: string): string {
|
||||||
rel="icon"
|
rel="icon"
|
||||||
type="image/png"
|
type="image/png"
|
||||||
sizes="32x32"
|
sizes="32x32"
|
||||||
href="/favicon-32x32.png"
|
href="${BASE_URL}/favicon-32x32.png"
|
||||||
/>
|
/>
|
||||||
<link
|
<link
|
||||||
rel="icon"
|
rel="icon"
|
||||||
type="image/png"
|
type="image/png"
|
||||||
sizes="16x16"
|
sizes="16x16"
|
||||||
href="/favicon-16x16.png"
|
href="${BASE_URL}/favicon-16x16.png"
|
||||||
/>
|
/>
|
||||||
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
<link rel="icon" type="image/x-icon" href="${BASE_URL}/favicon.ico" />
|
||||||
<link rel="stylesheet" type="text/css" href="/styles.css" />
|
<link rel="stylesheet" type="text/css" href="${BASE_URL}/styles.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<h1><a href="/">Kill the Newsletter!</a></h1>
|
<h1><a href="${BASE_URL}/">Kill the Newsletter!</a></h1>
|
||||||
<p>Convert email newsletters into Atom feeds</p>
|
<p>Convert email newsletters into Atom feeds</p>
|
||||||
<p>
|
<p>
|
||||||
<img
|
<img
|
||||||
src="/logo.svg"
|
src="${BASE_URL}/logo.svg"
|
||||||
alt="Convert email newsletters into Atom feeds"
|
alt="Convert email newsletters into Atom feeds"
|
||||||
/>
|
/>
|
||||||
</p>
|
</p>
|
||||||
|
@ -196,8 +196,8 @@ function layout(content: string): string {
|
||||||
· <a href="${ISSUE_REPORT}">Report an Issue</a>
|
· <a href="${ISSUE_REPORT}">Report an Issue</a>
|
||||||
</p>
|
</p>
|
||||||
</footer>
|
</footer>
|
||||||
<script src="/clipboard.min.js"></script>
|
<script src="${BASE_URL}/clipboard.min.js"></script>
|
||||||
<script src="/scripts.js"></script>
|
<script src="${BASE_URL}/scripts.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
`.trim();
|
`.trim();
|
||||||
|
@ -205,7 +205,7 @@ function layout(content: string): string {
|
||||||
|
|
||||||
function newInbox(): string {
|
function newInbox(): string {
|
||||||
return html`
|
return html`
|
||||||
<form method="POST" action="/">
|
<form method="POST" action="${BASE_URL}/">
|
||||||
<p>
|
<p>
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
|
|
Loading…
Reference in New Issue