Skip to content

Commit a6848a3

Browse files
committed
💄 style(html): add shortcut icon link
- add shortcut icon link for better browser compatibility 🔧 chore(structure): reorganize static config file - move staticwebapp.config.json to static directory for better organization
1 parent a32055f commit a6848a3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/layouts/baseof.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
})(window,document,'script','dataLayer','{{ .Site.Params.googleTagId }}');</script>
1212
<!-- End Google Tag Manager -->
1313
<title>{{ .Title }} | {{ .Site.Title }}</title>
14-
<link rel="icon" href="{{ .Site.Params.favicon | default "/favicon.ico" }}" type="image/x-icon" />
14+
<link rel="icon" href="/favicon.ico" type="image/x-icon">
15+
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
1516
<meta name="description" content="{{ ( .Page.Params.description | default .Site.Params.description) | plainify }}" />
1617
<meta name="keywords" content="{{ .Keywords | default .Site.Params.keywords }}" />
1718
<link rel="canonical" href="{{ .Site.Params.siteProdUrl }}{{ .RelPermalink }}" />

0 commit comments

Comments
 (0)