diff options
author | Rotzbua <Rotzbua@users.noreply.github.com> | 2022-08-21 17:56:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-21 23:56:27 +0800 |
commit | 2feed8049d17e1c1ba6bf5fc41c2d58f80bba75a (patch) | |
tree | c7a9d700b45ba283241f0116ee65e1aa50cd1752 /_includes/head.html | |
parent | 1e1e21d382496cabbd32d03bb5eab95b7e9de716 (diff) |
fix: remove non standard `rel=shortcut` (#97)
shortcut is used by IE6 which is dead and not supported anymore by most new frameworks and projects
Diffstat (limited to '_includes/head.html')
-rw-r--r-- | _includes/head.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_includes/head.html b/_includes/head.html index 89b30f2..0434442 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -4,7 +4,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="google-translate-customization" content="108d9124921d80c3-80e20d618ff053c8-g4f02ec6f3dba68b7-c"> {%- seo -%} - <link rel="shortcut icon" href="{{ site.favicon }}"> + <link rel="icon" href="{{ site.favicon }}"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/typeface-noto-sans@0.0.72/index.min.css"> <link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}"> |