From ebc5c77b9292b96a6aea5d1a91264146fdf80b08 Mon Sep 17 00:00:00 2001 From: Eric Wagoner Date: Mon, 22 Sep 2025 19:52:05 -0400 Subject: [PATCH] Update Hugo and theme with modern improvements MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Updated Hugo from v0.115.4 to v0.150.0 (latest) - Updated m10c theme to latest version (8 commits) - Fixed deprecated resources.ToCSS → css.Sass function - Upgraded social icons to use brand-specific Simple Icons - Added RSS feed autodiscovery support - Improved icon consistency across all social platforms 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .claude/settings.local.json | 3 ++- config.toml | 14 +++++++------- layouts/_default/baseof.html | 2 +- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.claude/settings.local.json b/.claude/settings.local.json index a994a7a4..914a4230 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -2,7 +2,8 @@ "permissions": { "allow": [ "Bash(hugo:*)", - "Bash(find:*)" + "Bash(find:*)", + "Bash(cat:*)" ], "deny": [], "ask": [] diff --git a/config.toml b/config.toml index f6c865cd..7fa36c18 100644 --- a/config.toml +++ b/config.toml @@ -17,11 +17,11 @@ theme = "m10c" name = "My Cooking Show" url = "https://www.youtube.com/@RandomRecipeProject" [[params.social]] - icon = "message-circle" + icon = "brand-mastodon" name = "Mastodon" url = "https://toots.kestrelsnest.social/@eric" [[params.social]] - icon = "message-circle" + icon = "brand-bluesky" name = "BlueSky" url = "https://bsky.app/profile/ewagoner.bsky.social" [[params.social]] @@ -37,23 +37,23 @@ theme = "m10c" name = "My Podcasts" url = "https://podcasts.kestrelsnest.social" [[params.social]] - icon = "youtube" + icon = "brand-youtube" name = "Personal YouTube" url = "https://youtube.com/ewagoner" [[params.social]] - icon = "linkedin" + icon = "brand-linkedin" name = "LinkedIn" url = "https://www.linkedin.com/in/wagonereric/" [[params.social]] - icon = "github" + icon = "brand-github" name = "Github" url = "https://github.com/ewagoner" [[params.social]] - icon = "git-branch" + icon = "brand-gitea" name = "Gitea" url = "https://git.kestrelsnest.social/eric" [[params.social]] - icon = "facebook" + icon = "brand-facebook" name = "Facebook" url = "https://facebook.com/ewagoner" [[params.social]] diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index ddbd0792..8ac88bba 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -8,7 +8,7 @@ - {{ $style := resources.Get "css/main.scss" | resources.ExecuteAsTemplate "css/main.scss" . | resources.ToCSS | resources.Minify | resources.Fingerprint -}} + {{ $style := resources.Get "css/main.scss" | resources.ExecuteAsTemplate "css/main.scss" . | css.Sass | resources.Minify | resources.Fingerprint -}} {{ range .AlternativeOutputFormats -}} {{ printf `` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}