hugo-theme-next/layouts/partials/head/favicon.html
2023-01-01 21:12:58 +08:00

9 lines
424 B
HTML

<!-- Website icons -->
{{ with .Site.Params.favicon }}
<link rel="shortcut icon" type="image/x-icon" href="{{ .icon }}">
<link rel="icon" type="image/x-icon" href="{{ .icon }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ .small }}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ .medium }}">
<link rel="apple-touch-icon" sizes="180x180" href="{{ .appleTouchIcon }}">
{{ end }}
<!-- Website icons -->