Add universal favicons to index.html

This commit is contained in:
Brooke 2024-05-29 21:25:27 -07:00
parent b496cde4d6
commit be70bbdae4
No known key found for this signature in database
GPG key ID: 56C4CCAEB8BD5307

View file

@ -23,7 +23,10 @@
{% endif -%}
{%- if config.extra.favicon %}
<link rel="shortcut icon" type="{{ config.extra.favicon_mimetype | default(value="image/x-icon") | safe }}" href="{{ config.extra.favicon | safe }}">
<link rel="icon" href="/favicon.ico" sizes="32x32">
<link rel="icon" href="/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png"><!-- 180×180 -->
<link rel="manifest" href="/manifest.webmanifest">
{% endif -%}
{%- block extra_head %}