custom-icons.html (794B)
1 {{/* 2 Overrides the theme's copy, which falls back to /site.webmanifest, 3 /images/apple-touch-icon.png and /images/safari-pinned-tab.svg - three 4 files this site does not have, so every page asked for three 404s. 5 6 The theme's SVG favicon is gone with them: the only image to hand is a 7 traced silhouette that weighs 119 KB, which is not a price worth paying 8 for a 32-pixel icon. Paths are relative so relURL follows baseURL, which 9 differs between mordaunt.dev/site/ and the jackmordaunt.com build. 10 */}} 11 <link rel="icon" type="image/png" href="{{ .Site.Params.favicon_32 | relURL }}" sizes="32x32"> 12 <link rel="icon" type="image/png" href="{{ .Site.Params.favicon_16 | relURL }}" sizes="16x16"> 13 <link rel="apple-touch-icon" sizes="180x180" href="{{ .Site.Params.touchicon | relURL }}">