summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob L. Kreuze <zerodaysfordays@sdf.lonestar.org>2019-05-02 16:46:55 -0400
committerJakob L. Kreuze <zerodaysfordays@sdf.lonestar.org>2019-05-02 16:46:55 -0400
commit6557a074a50d28816af4c117768860f2ebe911d0 (patch)
tree37c47b562cdebc3d22113dc4915edcf8d5f2e3d4
parent9b88acd1a760313b7bd059e0647690d289202c11 (diff)
Add a Favicon
-rw-r--r--.gitignore4
-rw-r--r--custom/theme.scm3
-rw-r--r--images/favicon.pngbin0 -> 8266 bytes
3 files changed, 6 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 4e5117e..0f4bf1c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,5 @@
-/images/
+/images/*
+!/images/favicon.png
+
/posts/
/site/
diff --git a/custom/theme.scm b/custom/theme.scm
index a3bcbd3..ac6f2ac 100644
--- a/custom/theme.scm
+++ b/custom/theme.scm
@@ -73,6 +73,9 @@
(href "http://jakob.space/index.xml")))
(link (@ (rel "me")
(href "https://mastodon.sdf.org/@jakob")))
+ (link (@ (rel "icon")
+ (type "image/png")
+ (href "http://jakob.space/favicon.png")))
(title ,(string-append title " — " (site-title site)))
,(stylesheet "fonts")
,(stylesheet "highlight")
diff --git a/images/favicon.png b/images/favicon.png
new file mode 100644
index 0000000..d5b97ed
--- /dev/null
+++ b/images/favicon.png
Binary files differ