From 68e4d6689d29ba5c1e7db2d7aaaec7d38e066f8e Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Tue, 9 May 2023 15:22:12 +0100 Subject: Add better favicons --- static/android-chrome-192x192.png | Bin 0 -> 3261 bytes static/android-chrome-512x512.png | Bin 0 -> 8045 bytes static/apple-touch-icon.png | Bin 0 -> 2691 bytes static/browserconfig.xml | 9 +++++++ static/favicon-16x16.png | Bin 0 -> 594 bytes static/favicon-32x32.png | Bin 0 -> 835 bytes static/favicon.ico | Bin 766 -> 15086 bytes static/mstile-144x144.png | Bin 0 -> 2585 bytes static/mstile-150x150.png | Bin 0 -> 2496 bytes static/mstile-310x150.png | Bin 0 -> 2655 bytes static/mstile-310x310.png | Bin 0 -> 4374 bytes static/mstile-70x70.png | Bin 0 -> 2075 bytes static/safari-pinned-tab.svg | 39 +++++++++++++++++++++++++++ static/site.webmanifest | 19 +++++++++++++ themes/ymherklotz/layouts/partials/head.html | 10 ++++++- 15 files changed, 76 insertions(+), 1 deletion(-) create mode 100644 static/android-chrome-192x192.png create mode 100644 static/android-chrome-512x512.png create mode 100644 static/apple-touch-icon.png create mode 100644 static/browserconfig.xml create mode 100644 static/favicon-16x16.png create mode 100644 static/favicon-32x32.png create mode 100644 static/mstile-144x144.png create mode 100644 static/mstile-150x150.png create mode 100644 static/mstile-310x150.png create mode 100644 static/mstile-310x310.png create mode 100644 static/mstile-70x70.png create mode 100644 static/safari-pinned-tab.svg create mode 100644 static/site.webmanifest diff --git a/static/android-chrome-192x192.png b/static/android-chrome-192x192.png new file mode 100644 index 0000000..f7c84e3 Binary files /dev/null and b/static/android-chrome-192x192.png differ diff --git a/static/android-chrome-512x512.png b/static/android-chrome-512x512.png new file mode 100644 index 0000000..8226465 Binary files /dev/null and b/static/android-chrome-512x512.png differ diff --git a/static/apple-touch-icon.png b/static/apple-touch-icon.png new file mode 100644 index 0000000..6e0926c Binary files /dev/null and b/static/apple-touch-icon.png differ diff --git a/static/browserconfig.xml b/static/browserconfig.xml new file mode 100644 index 0000000..2321d2c --- /dev/null +++ b/static/browserconfig.xml @@ -0,0 +1,9 @@ + + + + + + #00c266 + + + diff --git a/static/favicon-16x16.png b/static/favicon-16x16.png new file mode 100644 index 0000000..6e3a0ba Binary files /dev/null and b/static/favicon-16x16.png differ diff --git a/static/favicon-32x32.png b/static/favicon-32x32.png new file mode 100644 index 0000000..7d6a21a Binary files /dev/null and b/static/favicon-32x32.png differ diff --git a/static/favicon.ico b/static/favicon.ico index c9e0694..9d81b4e 100644 Binary files a/static/favicon.ico and b/static/favicon.ico differ diff --git a/static/mstile-144x144.png b/static/mstile-144x144.png new file mode 100644 index 0000000..f759600 Binary files /dev/null and b/static/mstile-144x144.png differ diff --git a/static/mstile-150x150.png b/static/mstile-150x150.png new file mode 100644 index 0000000..7045690 Binary files /dev/null and b/static/mstile-150x150.png differ diff --git a/static/mstile-310x150.png b/static/mstile-310x150.png new file mode 100644 index 0000000..893c6f2 Binary files /dev/null and b/static/mstile-310x150.png differ diff --git a/static/mstile-310x310.png b/static/mstile-310x310.png new file mode 100644 index 0000000..ae979d7 Binary files /dev/null and b/static/mstile-310x310.png differ diff --git a/static/mstile-70x70.png b/static/mstile-70x70.png new file mode 100644 index 0000000..557de38 Binary files /dev/null and b/static/mstile-70x70.png differ diff --git a/static/safari-pinned-tab.svg b/static/safari-pinned-tab.svg new file mode 100644 index 0000000..2ef12aa --- /dev/null +++ b/static/safari-pinned-tab.svg @@ -0,0 +1,39 @@ + + + + +Created by potrace 1.14, written by Peter Selinger 2001-2017 + + + + + + diff --git a/static/site.webmanifest b/static/site.webmanifest new file mode 100644 index 0000000..3921379 --- /dev/null +++ b/static/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "Yann's Blog", + "short_name": "Yann's Blog", + "icons": [ + { + "src": "/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#00c266", + "background_color": "#00c266", + "display": "standalone" +} diff --git a/themes/ymherklotz/layouts/partials/head.html b/themes/ymherklotz/layouts/partials/head.html index 85ef53d..af383ed 100644 --- a/themes/ymherklotz/layouts/partials/head.html +++ b/themes/ymherklotz/layouts/partials/head.html @@ -8,7 +8,15 @@ {{ template "_internal/twitter_cards.html" . }} - + + + + + + + + + {{ if .Site.Params.katex }} -- cgit