Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 82 additions & 0 deletions public/glitch-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/postmarks-favicon.ico
Binary file not shown.
Binary file added public/postmarks-touch-icon-180.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions src/pages/layouts/main.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="icon" href="https://glitch.com/favicon.ico">
<link rel="icon" href="/postmarks-favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{#if (mastodonAccount)}}
<link rel="me" href="{{ mastodonAccount }}">
{{/if}}
<link rel="alternate" type="application/atom+xml" href="{{{feedUrl}}}">
<title>{{title}} | {{siteName}}</title>
<link rel="apple-touch-icon" sizes="180x180" href="https://cdn.glitch.global/8eaf209c-2fa9-4353-9b99-e8d8f3a5f8d4/postmarks-touch-icon-180.png?v=1693611327251">
<link rel="shortcut icon" href="https://cdn.glitch.global/8eaf209c-2fa9-4353-9b99-e8d8f3a5f8d4/postmarks-favicon.ico?v=1693611323474">
<link rel="apple-touch-icon" sizes="180x180" href="/postmarks-touch-icon-180.png">
<link rel="shortcut icon" href="/postmarks-favicon.ico">
<link rel="search" type="application/opensearchdescription+xml" href="{{{searchUrl}}}" title="Postmarks">
<link rel="stylesheet" href="/style.css">
</head>
Expand Down Expand Up @@ -68,7 +68,7 @@
<img src="/github-icon.svg" alt="GitHub logo">
</a>
<a class="btn--remix" target="_top" href="https://glitch.new/github.com/ckolderup/postmarks">
<img src="https://cdn.glitch.com/605e2a51-d45f-4d87-a285-9410ad350515%2FLogo_Color.svg?v=1618199565140" alt="Glitch logo">
<img src="/glitch-logo.svg" alt="Glitch logo">
Remix on Glitch
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/layouts/popup.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<head>
<meta charset="utf-8" />
<link rel="icon" href="https://glitch.com/favicon.ico" />
<link rel="icon" href="/postmarks-favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />

<title>{{title}} | {{siteName}}</title>
Expand Down
2 changes: 1 addition & 1 deletion src/routes/opensearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ router.get('/', async (req, res) => {
height: '16',
type: 'image/png',
},
_: 'https://cdn.glitch.global/8eaf209c-2fa9-4353-9b99-e8d8f3a5f8d4/postmarks-favicon.ico?v=1693611323474',
_: `https://${domain}/postmarks-favicon.ico`,
},
Url: {
$: {
Expand Down