1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 15:56:23 -04:00
jarv.is/layouts/partials/head/favicons.html

16 lines
475 B
HTML

{{ with .Site.Data.manifest }}
{{- with index . "images/favicon.ico" }}
<link rel="icon" href="{{ .src | absURL }}">
{{- end }}
{{- with index . "images/favicon.svg" }}
<link rel="icon" href="{{ .src | absURL }}" type="image/svg+xml">
{{- end -}}
{{- with index . "images/apple-touch-icon.png" }}
<link rel="apple-touch-icon" href="{{ .src | absURL }}" sizes="180x180">
{{- end }}
{{ end }}
<link rel="manifest" href="{{ "site.webmanifest" | absURL }}">