From 6fd6b0286d3b5b4d3e43bbd49bc18ee79ce45a6e Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Fri, 12 May 2023 16:43:48 +0100 Subject: Add favicon --- layouts/partials/head_custom.html | 8 ++++++++ static/android-chrome-192x192.png | Bin 0 -> 3178 bytes static/android-chrome-512x512.png | Bin 0 -> 14447 bytes static/apple-touch-icon.png | Bin 0 -> 2848 bytes static/browserconfig.xml | 9 +++++++++ static/favicon-16x16.png | Bin 0 -> 791 bytes static/favicon-32x32.png | Bin 0 -> 1075 bytes static/favicon.ico | Bin 0 -> 15086 bytes static/mstile-144x144.png | Bin 0 -> 2349 bytes static/mstile-150x150.png | Bin 0 -> 2420 bytes static/mstile-310x150.png | Bin 0 -> 2755 bytes static/mstile-310x310.png | Bin 0 -> 5179 bytes static/mstile-70x70.png | Bin 0 -> 1871 bytes static/safari-pinned-tab.svg | 18 ++++++++++++++++++ static/site.webmanifest | 19 +++++++++++++++++++ 15 files changed, 54 insertions(+) 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/favicon.ico 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/layouts/partials/head_custom.html b/layouts/partials/head_custom.html index 93e3874..fe5c345 100644 --- a/layouts/partials/head_custom.html +++ b/layouts/partials/head_custom.html @@ -18,3 +18,11 @@ }); + + + + + + + + diff --git a/static/android-chrome-192x192.png b/static/android-chrome-192x192.png new file mode 100644 index 0000000..3a488e7 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..001744d 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..2204355 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..b3930d0 --- /dev/null +++ b/static/browserconfig.xml @@ -0,0 +1,9 @@ + + + + + + #da532c + + + diff --git a/static/favicon-16x16.png b/static/favicon-16x16.png new file mode 100644 index 0000000..32e9667 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..07de527 Binary files /dev/null and b/static/favicon-32x32.png differ diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..7256957 Binary files /dev/null and b/static/favicon.ico differ diff --git a/static/mstile-144x144.png b/static/mstile-144x144.png new file mode 100644 index 0000000..334c574 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..6ed0062 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..6e6a592 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..f925b61 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..77fa1b8 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..7acbfc8 --- /dev/null +++ b/static/safari-pinned-tab.svg @@ -0,0 +1,18 @@ + + + + +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..b20abb7 --- /dev/null +++ b/static/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "", + "short_name": "", + "icons": [ + { + "src": "/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} -- cgit