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
5 changes: 3 additions & 2 deletions _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@
{% endif %}

<!-- Favicon -------------------------- -->
<link rel="icon" href="/favicon.svg" sizes="any" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png"> <!-- 192x192px -->
<link rel="icon" href="/img/favicon/favicon.svg" sizes="any" type="image/svg+xml">
<link rel="icon" href="/img/favicon/favicon.webp" sizes="512" type="image/webp">
<link rel="apple-touch-icon" href="/img/favicon/apple-touch-icon.png"> <!-- 192x192px -->
<!-- favicon.ico をルートディレクトリにそっと置く。しかしheadには書かない。 -->

<!-- CSS Framework -------------------------- -->
Expand Down
Binary file removed favicon.ico
Binary file not shown.
48 changes: 0 additions & 48 deletions favicon.svg

This file was deleted.

Binary file added img/favicon/apple-touch-icon.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 img/favicon/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 img/favicon/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.
35 changes: 35 additions & 0 deletions img/favicon/favicon.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 img/favicon/favicon.webp
Binary file not shown.
26 changes: 16 additions & 10 deletions site.webmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,22 @@
"name": "{{ site.title_short }}",
"short_name": "{{ site.title_short }}",
"icons": [
{
"src": "/img/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/img/android-chrome-256x256.png",
"sizes": "256x256",
"type": "image/png"
}
{
"src": "/img/favicon/favicon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/img/favicon/favicon-512.png",
"type": "image/png",
"sizes": "512x512",
"purpose": "maskable"
},
{
"src": "/img/favicon/favicon-512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
Expand Down