Files
portails/layouts/partials/head/favicons.html
FileFabrik c7fd5ff155 Update favicons.html
added crossorigin="use-credentials" to avoid 401 if the Site is protected with Http Basic Auth
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link
2021-05-28 10:18:39 +02:00

6 lines
433 B
HTML

<meta name="theme-color" content="{{ $.Site.Params.themeColor }}">
<link rel="apple-touch-icon" sizes="180x180" href="{{ "apple-touch-icon.png" | relURL }}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ "favicon-32x32.png" | relURL }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ "favicon-16x16.png" | relURL }}">
<link rel="manifest" crossorigin="use-credentials" href="{{ "site.webmanifest" | relURL }}">