summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Tannergren <Epoxide@users.noreply.github.com>2023-08-03 22:03:24 +0200
committerGitHub <noreply@github.com>2023-08-03 22:03:24 +0200
commit40aa7506aa3921be0562c3204c31d398de1655fa (patch)
tree949cf21c227a9dd1c44ae510b9b22328a9426330
parentc06f8d2aba4cd70188237ea967db75dff51539c7 (diff)
feat: add favicon (#1)
-rw-r--r--layouts/partials/header.html1
-rw-r--r--static/favicon.icobin0 -> 9662 bytes
2 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'>
diff --git a/static/favicon.ico b/static/favicon.ico
new file mode 100644
index 0000000..44c8f5d
--- /dev/null
+++ b/static/favicon.ico
Binary files differ