diff options
author | Tomas Tannergren <Epoxide@users.noreply.github.com> | 2023-08-03 22:03:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-03 22:03:24 +0200 |
commit | 40aa7506aa3921be0562c3204c31d398de1655fa (patch) | |
tree | 949cf21c227a9dd1c44ae510b9b22328a9426330 /layouts | |
parent | c06f8d2aba4cd70188237ea967db75dff51539c7 (diff) |
feat: add favicon (#1)
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/partials/header.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html index f304fde..3d0a0bb 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -2,6 +2,7 @@ <html lang="{{ .Site.Language }}"> <head> <title>{{ if not .IsHome }}{{ .Title | title }} | {{ end }}{{ .Site.Title }}</title> + <link rel="icon" type="image/x-icon" href="/favicon.ico"> <link rel="canonical" href="{{ .Site.BaseURL }}"> <link rel='alternate' type='application/rss+xml' title="{{ .Site.Title }} RSS" href='/index.xml'> <link rel='stylesheet' type='text/css' href='/style.css'> |