From 8027bbee63e82502b4fa541980239bff80c0dc4c Mon Sep 17 00:00:00 2001
From: David Robillard <d@drobilla.net>
Date: Tue, 5 Jul 2022 14:49:22 -0400
Subject: Add favicon.ico for compatibility with older browsers

---
 themes/lv2/templates/base.html | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

(limited to 'themes')

diff --git a/themes/lv2/templates/base.html b/themes/lv2/templates/base.html
index a365579..e7e113c 100644
--- a/themes/lv2/templates/base.html
+++ b/themes/lv2/templates/base.html
@@ -4,7 +4,8 @@
     {% block head %}
       <title>{% block title %}{{ SITENAME }}{%endblock%}</title>
       <meta charset="utf-8" />
-      <link rel="shortcut icon" type="image/png" href="{{ SITEURL }}/images/favicon.png" />
+      <link rel="icon" type="image/png" href="{{ SITEURL }}/images/favicon.png" />
+      <link rel="icon" type="image/x-icon" href="{{ SITEURL }}/favicon.ico" />
       <link rel="stylesheet" href="{{ SITEURL }}/theme/css/{{ CSS_FILE }}" type="text/css" />
       {% if FEED_ALL_ATOM %}
         <link href="{{ FEED_DOMAIN }}/{{ FEED_ALL_ATOM }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} Full Atom Feed" />
-- 
cgit v1.2.1