diff --git a/android-chrome-192x192.png b/android-chrome-192x192.png deleted file mode 100644 index 220bf96..0000000 Binary files a/android-chrome-192x192.png and /dev/null differ diff --git a/android-chrome-512x512.png b/android-chrome-512x512.png deleted file mode 100644 index d8bf98a..0000000 Binary files a/android-chrome-512x512.png and /dev/null differ diff --git a/apple-touch-icon.png b/apple-touch-icon.png index 53e0531..5b02c6a 100644 Binary files a/apple-touch-icon.png and b/apple-touch-icon.png differ diff --git a/favicon-16x16.png b/favicon-16x16.png deleted file mode 100644 index 2ee434e..0000000 Binary files a/favicon-16x16.png and /dev/null differ diff --git a/favicon-32x32.png b/favicon-32x32.png deleted file mode 100644 index adec1fb..0000000 Binary files a/favicon-32x32.png and /dev/null differ diff --git a/favicon-96x96.png b/favicon-96x96.png new file mode 100644 index 0000000..3550660 Binary files /dev/null and b/favicon-96x96.png differ diff --git a/favicon.ico b/favicon.ico index 616702d..2c2a54e 100644 Binary files a/favicon.ico and b/favicon.ico differ diff --git a/favicon.svg b/favicon.svg new file mode 100644 index 0000000..bfc45c4 --- /dev/null +++ b/favicon.svg @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/site.hs b/site.hs index db84572..1de646a 100644 --- a/site.hs +++ b/site.hs @@ -18,7 +18,7 @@ main = hakyll $ do route idRoute compile copyFileCompiler - match "favicon.ico" $ do + match (fromList ["favicon.ico", "favicon.svg", "favicon-96x96.png", "web-app-manifest-192x192.png", "web-app-manifest-512x512.png", "apple-touch-icon.png", "site.webmanifest"]) $ do route idRoute compile copyFileCompiler diff --git a/site.webmanifest b/site.webmanifest index 45dc8a2..b17f5e5 100644 --- a/site.webmanifest +++ b/site.webmanifest @@ -1 +1,21 @@ -{"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"} \ No newline at end of file +{ + "name": "Dimitri Lozeve", + "short_name": "Dimitri Lozeve", + "icons": [ + { + "src": "/web-app-manifest-192x192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "/web-app-manifest-512x512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} diff --git a/templates/default.html b/templates/default.html index 898f8d5..044fb2c 100644 --- a/templates/default.html +++ b/templates/default.html @@ -8,9 +8,10 @@ content="width=device-width, initial-scale=1, user-scalable=yes" /> + + + - - Dimitri Lozeve - $title$ diff --git a/web-app-manifest-192x192.png b/web-app-manifest-192x192.png new file mode 100644 index 0000000..f3f13f5 Binary files /dev/null and b/web-app-manifest-192x192.png differ diff --git a/web-app-manifest-512x512.png b/web-app-manifest-512x512.png new file mode 100644 index 0000000..9f5d254 Binary files /dev/null and b/web-app-manifest-512x512.png differ