From 7c13e1dfa296043101c814a2831d41595aff3e70 Mon Sep 17 00:00:00 2001 From: Will Estes Date: Wed, 2 Sep 2026 12:17:43 -0400 Subject: [PATCH] Add site logo and favicon Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01LH4fKwxX8hjAwXubP9N2tq --- assets/css/style.css | 9 +++++++++ layouts/_default/baseof.html | 8 +++++++- static/apple-touch-icon.png | Bin 0 -> 42383 bytes static/favicon.ico | Bin 0 -> 15086 bytes static/favicon.png | Bin 0 -> 3338 bytes static/images/logo.png | Bin 0 -> 165181 bytes 6 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 static/apple-touch-icon.png create mode 100644 static/favicon.ico create mode 100644 static/favicon.png create mode 100644 static/images/logo.png diff --git a/assets/css/style.css b/assets/css/style.css index 3f8ba7d..cdf05d9 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -70,12 +70,21 @@ a { color: var(--sage); } } .site-header .brand { + display: flex; + align-items: center; + gap: 0.6rem; font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif; font-size: 1.3rem; color: var(--ink); text-decoration: none; } +.site-header .brand img { + height: 44px; + width: 44px; + object-fit: contain; +} + .site-header nav { display: flex; gap: 1.5rem; diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 8b5e96b..55672dc 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -4,11 +4,17 @@ {{ if .IsHome }}{{ .Site.Title }} — {{ .Site.Params.tagline }}{{ else }}{{ .Title }} — {{ .Site.Title }}{{ end }} + + +