Merge branch 'add_favicons'

This commit is contained in:
Brooke 2024-05-29 21:25:57 -07:00
commit 7b90de4455
No known key found for this signature in database
GPG key ID: 56C4CCAEB8BD5307

View file

@ -23,7 +23,10 @@
{% endif -%} {% endif -%}
{%- if config.extra.favicon %} {%- 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 -%} {% endif -%}
{%- block extra_head %} {%- block extra_head %}