From 2a5b1edf19f530032c0ac96ffd454618ebba236e Mon Sep 17 00:00:00 2001 From: Will Estes Date: Wed, 15 Jul 2026 13:12:07 -0400 Subject: [PATCH] Add root-wood mark to the site header Traced from a piece of petrified root wood the user owns, simplified into a flat currentColor SVG so it matches the header text in both light and dark mode, plus a bio line explaining the connection. Co-Authored-By: Claude Sonnet 5 --- assets/css/main.css | 8 ++++++++ assets/images/reground-root.svg | 21 +++++++++++++++++++++ content/_index.md | 2 +- layouts/_default/baseof.html | 6 +++++- 4 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 assets/images/reground-root.svg diff --git a/assets/css/main.css b/assets/css/main.css index 81ac66e..3bf0a02 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -107,12 +107,20 @@ header.site .inner { flex-wrap: wrap; } header.site .brand { + display: flex; + align-items: center; + gap: 0.6rem; font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--bg); text-decoration: none; } +header.site .brand svg { + height: 28px; + width: auto; + display: block; +} header.site nav { display: flex; gap: 1.5rem; diff --git a/assets/images/reground-root.svg b/assets/images/reground-root.svg new file mode 100644 index 0000000..4e7c3b5 --- /dev/null +++ b/assets/images/reground-root.svg @@ -0,0 +1,21 @@ + diff --git a/content/_index.md b/content/_index.md index 9c2b70a..ed1c064 100644 --- a/content/_index.md +++ b/content/_index.md @@ -16,4 +16,4 @@ description: "DevOps consulting, ghostwriting, and helping fiction authors find businesses, without the overhead. [Get in touch](/contact/). -Will Estes lives outside Atlanta with his children and one very opinionated cat. He plays classical guitar and listens to country music. His favorite season is soup season. +Will Estes lives outside Atlanta with his children and one very opinionated cat. He plays classical guitar and listens to country music. His favorite season is soup season. The mark by the site name is traced from a piece of petrified root wood he keeps on his desk — about as close to a mission statement as he's written down. diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index cf80d68..32afb2c 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -21,7 +21,11 @@
- {{ .Site.Title }} + {{ $rootMark := resources.Get "images/reground-root.svg" }} + + {{ $rootMark.Content | safeHTML }} + {{ .Site.Title }} +