Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Swap updated favicons #502

Merged
merged 6 commits into from
Feb 27, 2024
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
6 changes: 4 additions & 2 deletions app/_layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@
{% include description.html %}
{% include sharing-image.html %}
<link rel="canonical" href="{{ site.url }}{{ site.baseurl }}{{ page.url | replace:'index.html',''}}">
<link rel="shortcut icon" type="image/png" href="{{ site.baseurl }}/assets/images/favicon.png">
<link rel="apple-touch-icon" href="{{ site.baseurl }}/assets/images/apple-touch-icon.png">
<link rel="icon" href="{{ site.baseurl }}/assets/images/favicon.ico" sizes="32x32">
<link rel="icon" href="{{ site.baseurl }}/assets/images/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="{{ site.baseurl }}/assets/images/apple-touch-favicon.png">
<link rel="manifest" href="{{ site.baseurl }}/manifest.webmanifest">
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/main.css?cache-buster=17">
<link rel="alternate" href="{{ site.baseurl }}/blog/feed/" type="application/rss+xml" title="RSS Feed">
{% include custom-css.html %}
Expand Down
Binary file added app/assets/images/apple-touch-favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed app/assets/images/apple-touch-icon.png
Binary file not shown.
Binary file added app/assets/images/favicon-192.png
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 app/assets/images/favicon-512.png
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 app/assets/images/favicon.ico
Binary file not shown.
Binary file removed app/assets/images/favicon.png
Binary file not shown.
15 changes: 15 additions & 0 deletions app/assets/images/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions app/manifest.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
---
{
"name": "The Library Innovation Lab at Harvard University",
"icons": [
{ "src": "{{ site.baseurl }}/assets/images/favicon-192.png", "type": "image/png", "sizes": "192x192", "purpose": "maskable" },
{ "src": "{{ site.baseurl }}/assets/images/favicon-512.png", "type": "image/png", "sizes": "512x512", "purpose": "maskable" },
{ "src": "{{ site.baseurl }}/assets/images/favicon.svg", "sizes": "any" }
]
}
Loading