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 }} +